Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 497 for sw_vers (2.03 sec)

  1. src/expvar/expvar_test.go

    	// Such pattern is used in net/http and net/rpc.
    
    	b.StopTimer()
    
    	P := runtime.GOMAXPROCS(0)
    	N := b.N / P
    	W := 1000
    
    	// Setup P client/server connections.
    	clients := make([]net.Conn, P)
    	servers := make([]net.Conn, P)
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		b.Fatalf("Listen failed: %v", err)
    	}
    	defer ln.Close()
    	done := make(chan bool, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. docs/metrics/README.md

    ## Prometheus Probe
    
    MinIO allows reading metrics for the entire cluster from any single node. This allows for metrics collection for a MinIO instance across all servers. Thus, metrics collection for instances behind a load balancer can be done without any knowledge of the individual node addresses. The cluster wide metrics can be read at
    `<Address for MinIO Service>/minio/v2/metrics/cluster`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Properties: map[string]spec.Schema{
    					"kind": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    
    [[sec:ignoring-keys]]
    === Specifying key servers and ignoring keys
    
    Gradle will automatically download the public keys required to verify a signature.
    For this it uses a list of well known and trusted key servers (the list may change between Gradle versions, please refer to the implementation to figure out what servers are used by default).
    
    You can explicitly set the list of key servers that you want to use by adding them to the configuration:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

        }
      }
      return failure();
    }
    
    // Check if the `graph` has parameter server jobs and resource variable
    // arguments that are on parameter servers
    bool HasPsWithResourceVariable(const Graph& graph) {
      // Check parameter serverjobs and resource variable arguments that are
      // on parameter servers.
      const std::string jobType = "ps";
      const std::string nodeType = "_Arg";
      const std::string attrKey = "T";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionResult.java

         *
         * @return The decrypted server or {@code null}.
         */
        Server getServer();
    
        /**
         * Gets the decrypted servers.
         *
         * @return The decrypted server, can be empty but never {@code null}.
         */
        List<Server> getServers();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationXmlTags.java

        static final String IGNORED_KEY = "ignored-key";
        static final String IGNORED_KEYS = "ignored-keys";
        static final String KEY_SERVER = "key-server";
        static final String KEY_SERVERS = "key-servers";
        static final String NAME = "name";
        static final String ORIGIN = "origin";
        static final String PGP = "pgp";
        static final String REASON = "reason";
        static final String REGEX = "regex";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 13:23:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pkg/kubelet/container/testing/fake_runtime_helper.go

    }
    
    func (f *FakeRuntimeHelper) GetPodCgroupParent(pod *v1.Pod) string {
    	return ""
    }
    
    func (f *FakeRuntimeHelper) GetPodDNS(pod *v1.Pod) (*runtimeapi.DNSConfig, error) {
    	return &runtimeapi.DNSConfig{
    		Servers:  f.DNSServers,
    		Searches: f.DNSSearches,
    		Options:  f.DNSOptions}, f.Err
    }
    
    // This is not used by docker runtime.
    func (f *FakeRuntimeHelper) GeneratePodHostNameAndDomain(pod *v1.Pod) (string, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 11:01:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-kubeapiserver.sh

          exit 1
      fi
    
      if [[ -z "${ETCD_SERVERS:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-/events#http://127.0.0.1:4002}"
      elif [[ -n "${ETCD_SERVERS_OVERRIDES:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-}"
      fi
    
      if [[ -n "${STORAGE_BACKEND:-}" ]]; then
        params_ref+=" --storage-backend=${STORAGE_BACKEND}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. tensorflow/c/eager/parallel_device/BUILD

            "//tensorflow/core:test_main",
        ],
    )
    
    tf_cc_test(
        name = "parallel_device_remote_test",
        srcs = ["parallel_device_remote_test.cc"],
        # TODO(b/136478427): Enable global heap checking when servers shut down
        # cleanly.
        args = ["--heap_check="],
        deps = [
            ":parallel_device",
            ":parallel_device_testlib",
            "//tensorflow/c:c_api",
            "//tensorflow/c:c_api_experimental",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top