Home
last modified time | relevance | path

Searched full:solution (Results 1 – 25 of 2635) sorted by relevance

12345678910>>...106

/external/google-cloud-java/java-bare-metal-solution/
DCHANGELOG.md3 …gle-cloud-java/compare/google-cloud-bare-metal-solution-v0.4.1-SNAPSHOT...google-cloud-bare-metal-
24 …/google-cloud-java/compare/google-cloud-bare-metal-solution-v0.3.8...google-cloud-bare-metal-solut…
45 ## [0.3.8](https://github.com/googleapis/java-bare-metal-solution/compare/v0.3.7...v0.3.8) (2022-10…
50 * update protobuf to v3.21.7 ([ca3bbfe](https://github.com/googleapis/java-bare-metal-solution/comm…
52 ## [0.3.7](https://github.com/googleapis/java-bare-metal-solution/compare/v0.3.6...v0.3.7) (2022-10…
57 …b.com/googleapis/java-bare-metal-solution/issues/105)) ([683d71d](https://github.com/googleapis/ja…
59 ## [0.3.6](https://github.com/googleapis/java-bare-metal-solution/compare/v0.3.5...v0.3.6) (2022-09…
64 …b.com/googleapis/java-bare-metal-solution/issues/96)) ([ab9959d](https://github.com/googleapis/jav…
65 …b.com/googleapis/java-bare-metal-solution/issues/82)) ([ace0bf1](https://github.com/googleapis/jav…
66 …b.com/googleapis/java-bare-metal-solution/issues/83)) ([f0438ad](https://github.com/googleapis/jav…
[all …]
Dpom.xml5 <artifactId>google-cloud-bare-metal-solution-parent</artifactId>
7 <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
8 <name>Google Bare Metal SOlution Parent</name>
24 <site.installationModule>google-cloud-bare-metal-solution-parent</site.installationModule>
31 <artifactId>google-cloud-bare-metal-solution</artifactId>
32 … <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
36 <artifactId>grpc-google-cloud-bare-metal-solution-v2</artifactId>
37 …<version>0.17.0</version><!-- {x-version-update:grpc-google-cloud-bare-metal-solution-v2:current} …
41 <artifactId>proto-google-cloud-bare-metal-solution-v2</artifactId>
42 …<version>0.17.0</version><!-- {x-version-update:proto-google-cloud-bare-metal-solution-v2:current}…
[all …]
D.OwlBot.yaml17 - "/java-bare-metal-solution/samples/snippets/generated"
18 - "/java-bare-metal-solution/grpc-google-.*/src"
19 - "/java-bare-metal-solution/proto-google-.*/src"
20 - "/java-bare-metal-solution/google-.*/src"
23 - "/java-bare-metal-solution/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java"
27 dest: "/owl-bot-staging/java-bare-metal-solution/$1/proto-google-cloud-bare-metal-solution-$1/src"
29 dest: "/owl-bot-staging/java-bare-metal-solution/$1/grpc-google-cloud-bare-metal-solution-$1/src"
31 dest: "/owl-bot-staging/java-bare-metal-solution/$1/google-cloud-bare-metal-solution/src"
33 dest: "/owl-bot-staging/java-bare-metal-solution/$1/samples/snippets/generated"
DREADME.md1 # Google Bare Metal Solution Client for Java
3 Java idiomatic client for [Bare Metal Solution][product-docs].
36 <artifactId>google-cloud-bare-metal-solution</artifactId>
42 <!-- {x-version-update-start:google-cloud-bare-metal-solution:released} -->
47 <artifactId>google-cloud-bare-metal-solution</artifactId>
55 implementation 'com.google.cloud:google-cloud-bare-metal-solution:0.17.0'
61 libraryDependencies += "com.google.cloud" % "google-cloud-bare-metal-solution" % "0.17.0"
71Solution APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam-roles] r…
77 … Cloud Platform Console][developer-console] project with the Bare Metal Solution [API enabled][ena…
78 You will need to [enable billing][enable-billing] to use Google Bare Metal Solution.
[all …]
/external/skia/src/base/
DSkCubics.cpp38 int SkCubics::RootsReal(double A, double B, double C, double D, double solution[3]) { in RootsReal()
40 return SkQuads::RootsReal(B, C, D, solution); in RootsReal()
43 int num = SkQuads::RootsReal(A, B, C, solution); in RootsReal()
45 if (sk_double_nearly_zero(solution[i])) { in RootsReal()
49 solution[num++] = 0; in RootsReal()
53 int num = SkQuads::RootsReal(A, A + B, -D, solution); in RootsReal()
55 if (sk_doubles_nearly_equal_ulps(solution[i], 1)) { in RootsReal()
59 solution[num++] = 1; in RootsReal()
86 double* roots = solution; in RootsReal()
96 if (!nearly_equal(solution[0], r)) { in RootsReal()
[all …]
/external/ot-br-posix/third_party/Simple-web-server/repo/tests/
Dparse_test.cpp220 SimpleWeb::CaseInsensitiveMultimap solution; in main() local
223 ASSERT(parsed == solution); in main()
226 SimpleWeb::CaseInsensitiveMultimap solution = {{"Content-Type", "application/json"}}; in main() local
229 ASSERT(parsed == solution); in main()
232 SimpleWeb::CaseInsensitiveMultimap solution = {{"Content-Type", "application/json"}}; in main() local
235 ASSERT(parsed == solution); in main()
238 SimpleWeb::CaseInsensitiveMultimap solution = {{"Content-Type", "application/json"}}; in main() local
241 ASSERT(parsed == solution); in main()
246 SimpleWeb::CaseInsensitiveMultimap solution; in main() local
248 ASSERT(parsed == solution); in main()
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dmatrix_diag_ops_test.py335 solution, argument
339 """Verifies that matrix_diag produces `solution` when fed `params`.
343 solution: numpy array representing the expected output of matrix_diag.
351 expected = solution.astype(dtype)
414 for diag_index, (vecs, solution) in tests.items():
416 self._assertOpOutputMatchesExpected(params, solution[0])
421 for diag_index, (vecs, solution) in tests.items():
423 self._assertOpOutputMatchesExpected(params, solution)
431 # solution shape is updated.
463 for diag_index, (vecs, solution) in tests.items():
[all …]
/external/google-cloud-java/java-optimization/proto-google-cloud-optimization-v1/src/main/java/com/google/cloud/optimization/v1/
DOptimizeToursRequestOrBuilder.java62 * For asynchronous requests, the server will generate a solution (if
78 * For asynchronous requests, the server will generate a solution (if
94 * For asynchronous requests, the server will generate a solution (if
228 * Guide the optimization algorithm in finding a first solution that is
229 * similar to a previous solution.
230 * The model is constrained when the first solution is built.
232 * solution, but they may be performed in successive solutions.
233 * The solution must satisfy some basic validity assumptions:
250 * If the injected solution is not feasible, a validation error is not
264 * Guide the optimization algorithm in finding a first solution that is
[all …]
DInjectedSolutionConstraintOrBuilder.java30 * Routes of the solution to inject. Some routes may be omitted from the
31 * original solution. The routes and skipped shipments must satisfy the basic
42 * Routes of the solution to inject. Some routes may be omitted from the
43 * original solution. The routes and skipped shipments must satisfy the basic
54 * Routes of the solution to inject. Some routes may be omitted from the
55 * original solution. The routes and skipped shipments must satisfy the basic
66 * Routes of the solution to inject. Some routes may be omitted from the
67 * original solution. The routes and skipped shipments must satisfy the basic
79 * Routes of the solution to inject. Some routes may be omitted from the
80 * original solution. The routes and skipped shipments must satisfy the basic
[all …]
DOptimizeToursRequest.java258 * solution quality. In all modes, the global request deadline is enforced.
278 * Stop the search after finding the first good solution.
311 * Stop the search after finding the first good solution.
478 * For asynchronous requests, the server will generate a solution (if
497 * For asynchronous requests, the server will generate a solution (if
516 * For asynchronous requests, the server will generate a solution (if
705 * Guide the optimization algorithm in finding a first solution that is
706 * similar to a previous solution.
707 * The model is constrained when the first solution is built.
709 * solution, but they may be performed in successive solutions.
[all …]
DAggregatedMetricsOrBuilder.java44 * Total travel duration for a route or a solution.
56 * Total travel duration for a route or a solution.
68 * Total travel duration for a route or a solution.
79 * Total wait duration for a route or a solution.
91 * Total wait duration for a route or a solution.
103 * Total wait duration for a route or a solution.
114 * Total delay duration for a route or a solution.
126 * Total delay duration for a route or a solution.
138 * Total delay duration for a route or a solution.
149 * Total break duration for a route or a solution.
[all …]
/external/google-cloud-java/java-bare-metal-solution/google-cloud-bare-metal-solution-bom/
Dpom.xml5 <artifactId>google-cloud-bare-metal-solution-bom</artifactId>
6 <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
16 <name>Google Bare Metal SOlution BOM</name>
18 BOM for Bare Metal SOlution
29 <artifactId>google-cloud-bare-metal-solution</artifactId>
30 … <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
34 <artifactId>grpc-google-cloud-bare-metal-solution-v2</artifactId>
35 …<version>0.17.0</version><!-- {x-version-update:grpc-google-cloud-bare-metal-solution-v2:current} …
39 <artifactId>proto-google-cloud-bare-metal-solution-v2</artifactId>
40 …<version>0.17.0</version><!-- {x-version-update:proto-google-cloud-bare-metal-solution-v2:current}…
/external/apache-commons-math/src/main/java/org/apache/commons/math3/optim/linear/
DSolutionCallback.java24 * of the best solution found.
34 * solution has been found.
36 * @param tableau the simplex tableau containing a feasible solution
43 * Retrieve the best solution found so far.
45 * <b>Note:</b> the returned solution may not be optimal, e.g. in case
48 * @return the best solution found so far by the optimizer, or {@code null} if
49 * no feasible solution could be found
56 * Returns if the found solution is optimal.
57 * @return {@code true} if the solution is optimal, {@code false} otherwise
/external/tensorflow/tensorflow/python/kernel_tests/array_ops/
Ddiag_op_test.py390 for diags, (vecs, solution) in tests.items():
392 self.assertEqual(v_diags.get_shape(), solution[0].shape)
393 self.assertAllEqual(v_diags, solution[0])
419 for diags, (vecs, solution) in tests.items():
425 mask = solution == 0
426 solution = (solution + padding_value * mask).astype(dtype)
427 self.assertEqual(v_diags.get_shape(), solution.shape)
428 self.assertAllEqual(v_diags, solution)
453 # solution shape is updated.
483 for diags, (vecs, solution) in tests.items():
[all …]
/external/google-cloud-java/java-bare-metal-solution/google-cloud-bare-metal-solution/
Dpom.xml5 <artifactId>google-cloud-bare-metal-solution</artifactId>
6 <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
8 <name>Google Bare Metal SOlution</name>
9 …<description>Bare Metal SOlution Bring your Oracle workloads to Google Cloud with Bare Metal Solut…
12 <artifactId>google-cloud-bare-metal-solution-parent</artifactId>
13 <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
16 <site.installationModule>google-cloud-bare-metal-solution</site.installationModule>
46 <artifactId>proto-google-cloud-bare-metal-solution-v2</artifactId>
78 <artifactId>grpc-google-cloud-bare-metal-solution-v2</artifactId>
/external/python/google-api-python-client/docs/dyn/
Djobs_v3p1beta1.projects.clientEvents.html75 <h1><a href="jobs_v3p1beta1.html">Cloud Talent Solution API</a> . <a href="jobs_v3p1beta1.projects.…
82Solution. You may inspect the created events in [self service tools](https://console.cloud.google.…
91Solution. You may inspect the created events in [self service tools](https://console.cloud.google.…
99Solution. Providing this information improves the quality of search and recommendation for the API…
105 …ements Cloud Talent Solution. # A event issued when a job seeker interacts with the application th…
124 …an end user interacts with the application that implements Cloud Talent Solution. Providing this i…
130 …ements Cloud Talent Solution. # A event issued when a job seeker interacts with the application th…
Djobs_v3.projects.clientEvents.html75 <h1><a href="jobs_v3.html">Cloud Talent Solution API</a> . <a href="jobs_v3.projects.html">projects…
82Solution. You may inspect the created events in [self service tools](https://console.cloud.google.…
91Solution. You may inspect the created events in [self service tools](https://console.cloud.google.…
99Solution. Providing this information improves the quality of search and recommendation for the API…
105 …ements Cloud Talent Solution. # A event issued when a job seeker interacts with the application th…
124 …an end user interacts with the application that implements Cloud Talent Solution. Providing this i…
130 …ements Cloud Talent Solution. # A event issued when a job seeker interacts with the application th…
Djobs_v4.projects.tenants.clientEvents.html75 <h1><a href="jobs_v4.html">Cloud Talent Solution API</a> . <a href="jobs_v4.projects.html">projects…
82Solution. You may inspect the created events in [self service tools](https://console.cloud.google.…
91Solution. You may inspect the created events in [self service tools](https://console.cloud.google.…
98 …an end user interacts with the application that implements Cloud Talent Solution. Providing this i…
102 …ments Cloud Talent Solution. # An event issued when a job seeker interacts with the application th…
119 …an end user interacts with the application that implements Cloud Talent Solution. Providing this i…
123 …ments Cloud Talent Solution. # An event issued when a job seeker interacts with the application th…
/external/apache-commons-math/src/main/java/org/apache/commons/math3/linear/
DIterativeLinearSolver.java29 * solution.
65 * @param x0 the initial guess of the solution
98 * Returns an estimate of the solution to the linear system A &middot; x = b.
102 * @return a new vector containing the solution
122 * Returns an estimate of the solution to the linear system A &middot; x = b.
126 * @param x0 the initial guess of the solution
127 * @return a new vector containing the solution
146 * Returns an estimate of the solution to the linear system A &middot; x = b. The solution is
151 * @param x0 initial guess of the solution
152 * @return a reference to {@code x0} (shallow copy) updated with the solution
/external/google-cloud-java/java-bare-metal-solution/grpc-google-cloud-bare-metal-solution-v2/
Dpom.xml6 <artifactId>grpc-google-cloud-bare-metal-solution-v2</artifactId>
7 …<version>0.17.0</version><!-- {x-version-update:grpc-google-cloud-bare-metal-solution-v2:current} …
8 <name>grpc-google-cloud-bare-metal-solution-v2</name>
9 <description>GRPC library for google-cloud-bare-metal-solution</description>
12 <artifactId>google-cloud-bare-metal-solution-parent</artifactId>
13 <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
38 <artifactId>proto-google-cloud-bare-metal-solution-v2</artifactId>
/external/google-cloud-java/java-talent/
DREADME.md1 # Google Talent Solution Client for Java
3 Java idiomatic client for [Talent Solution][product-docs].
68Solution APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam-roles] r…
74 You will need a [Google Cloud Platform Console][developer-console] project with the Talent Solution
75 You will need to [enable billing][enable-billing] to use Google Talent Solution.
85 ## About Talent Solution
88Solution][product-docs] allows you to transform your job search and candidate matching capabilitie…
90 See the [Talent Solution client library docs][javadocs] to learn how to
91 use this Talent Solution Client Library.
104 Talent Solution uses gRPC for the transport layer.
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DSolution.h1 //===- Solution.h - PBQP Solution -------------------------------*- C++ -*-===//
9 // PBQP Solution class.
23 /// Represents a solution to a PBQP problem.
26 class Solution {
32 /// Initialise an empty solution.
33 Solution() = default;
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/PBQP/
DSolution.h1 //===- Solution.h - PBQP Solution -------------------------------*- C++ -*-===//
9 // PBQP Solution class.
23 /// Represents a solution to a PBQP problem.
26 class Solution {
32 /// Initialise an empty solution.
33 Solution() = default;
/external/google-cloud-java/java-bare-metal-solution/proto-google-cloud-bare-metal-solution-v2/
Dpom.xml6 <artifactId>proto-google-cloud-bare-metal-solution-v2</artifactId>
7 …<version>0.17.0</version><!-- {x-version-update:proto-google-cloud-bare-metal-solution-v2:current}…
8 <name>proto-google-cloud-bare-metal-solution-v2</name>
9 <description>Proto library for google-cloud-bare-metal-solution</description>
12 <artifactId>google-cloud-bare-metal-solution-parent</artifactId>
13 <version>0.17.0</version><!-- {x-version-update:google-cloud-bare-metal-solution:current} -->
/external/gson/
DTroubleshooting.md11 **Solution:** Make sure your code adheres to the following:
25 **Solution:** Write custom Gson [`TypeAdapter`](https://www.javadoc.io/doc/com.google.code.gson/gso…
42 **Solution:** Make sure the `module-info.java` file of your project allows Gson to use reflection o…
58 **Solution:** Make sure you have configured ProGuard / R8 correctly to preserve the names of your f…
66 **Solution:** Make sure you have configured ProGuard / R8 correctly to preserve the names of your f…
78 **Solution:** Make sure that the class:
91 **Solution:** Convert the class to a `static` nested class. If the class is already `static` make s…
104 **Solution:** Use [`GsonBuilder.enableComplexMapKeySerialization()`](https://www.javadoc.io/doc/com…
112 **Solution:** During debugging log the JSON data right before calling Gson methods or set a breakpo…
120 **Solution:** Use [`GsonBuilder.setObjectToNumberStrategy`](https://www.javadoc.io/doc/com.google.c…
[all …]

12345678910>>...106