- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 634 for greeting (0.08 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/ProjectUtils.java
- import org.eclipse.aether.RepositorySystemSession;
- // This class needs to stick around because it was exposed the remote resources plugin started using it instead of
- // getting the repositories from the project.
- /**
- * ProjectUtils
- */
- @Deprecated
- public final class ProjectUtils {
- private ProjectUtils() {}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
istioctl/pkg/install/k8sversion/version.go
- // may experience problems if they proceed with the install.
- func IsK8VersionSupported(c kube.Client, l clog.Logger) error {
- serverVersion, err := c.GetKubernetesVersion()
- if err != nil {
- return fmt.Errorf("error getting Kubernetes version: %w", err)
- }
- if !kube.IsAtLeastVersion(c, MinK8SVersion) {
- l.LogAndPrintf(UnSupportedK8SVersionLogMsg, serverVersion.GitVersion, pkgVersion.Info.Version, MinK8SVersion)
- }
- return nil
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 2.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/ImmutableValueGraphTest.java
- assertThat(emptyGraph.allowsSelfLoops()).isTrue();
- assertThat(emptyGraph.nodeOrder()).isEqualTo(ElementOrder.<String>natural());
- }
- /**
- * Tests that the ImmutableValueGraph.Builder doesn't change when the creating ValueGraphBuilder
- * changes.
- */
- @Test
- @SuppressWarnings("CheckReturnValue")
- public void immutableValueGraphBuilder_copiesGraphBuilder() {
- ValueGraphBuilder<String, Object> graphBuilder =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jan 09 20:24:43 UTC 2020 - 6.4K bytes - Viewed (0) -
misc/go_android_exec/exitcode_test.go
- if err == nil || !wantErr.MatchString(err.Error()) {
- t.Errorf("want error matching %s, got %s", wantErr, err)
- }
- // And it should flush all output (even if it looks
- // like we may be getting an exit code)
- if got := out.String(); text != got {
- t.Errorf("want full output %q, got %q", text, got)
- }
- }
- wantErr = regexp.MustCompile("^no exit code")
- check("abc")
- check("exitcode")
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed May 03 14:54:58 UTC 2023 - 2.1K bytes - Viewed (0) -
tensorflow/c/c_api_function.cc
- "Encountered while processing output ", i, " from function '", fn_name,
- "'");
- TF_RETURN_WITH_CONTEXT_IF_ERROR(ValidateNonRefOutput(node, idx),
- "Encountered while creating function '",
- fn_name, "'");
- output_tensors->emplace_back(node, idx);
- }
- return absl::OkStatus();
- }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 13.7K bytes - Viewed (0) -
tests/update_test.go
- DB.Table("langs").Migrator().DropTable(&Language{})
- DB.Table("langs").AutoMigrate(&Language{})
- if err := DB.Table("langs").Save(&lang).Error; err != nil {
- t.Errorf("no error should happen when creating data, but got %v", err)
- }
- var result3 Language
- if err := DB.Table("langs").First(&result3, "code = ?", lang.Code).Error; err != nil || result3.Name != lang.Name {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Dec 04 03:50:58 UTC 2023 - 30.3K bytes - Viewed (0) -
docs/kms/IAM.md
- the KES CLI once you have successfully setup KES:
- ```sh
- kes key create my-minio-key OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
- ```
- - For instructions on setting up KES, see the [KES Getting Started guide](https://github.com/minio/kes/wiki/Getting-Started)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 5.3K bytes - Viewed (0) -
docs/en/docs/tutorial/response-status-code.md
- * `200` is the default status code, which means everything was "OK".
- * Another example would be `201`, "Created". It is commonly used after creating a new record in the database.
- * A special case is `204`, "No Content". This response is used when there is no content to return to the client, and so the response must not have a body.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:13:18 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java
- /**
- * Returns a builder that creates immutable sorted multisets with an explicit comparator. If the
- * comparator has a more general type than the set being generated, such as creating a {@code
- * SortedMultiset<Integer>} with a {@code Comparator<Number>}, use the {@link Builder} constructor
- * instead.
- *
- * @throws NullPointerException if {@code comparator} is null
- */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 35.4K bytes - Viewed (0) -
istioctl/pkg/xds/client.go
- func DialOptions(opts clioptions.CentralControlPlaneOptions,
- ns, serviceAccount string, kubeClient kube.CLIClient,
- ) ([]grpc.DialOption, error) {
- ctx := context.TODO()
- // If we are using the insecure 15010 don't bother getting a token
- if opts.Plaintext || opts.CertDir != "" {
- return make([]grpc.DialOption, 0), nil
- }
- // Use bearer token
- aud := tokenAudiences
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Dec 19 22:42:42 UTC 2023 - 3.7K bytes - Viewed (0)