Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for Shardz (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//
    	// hard-coded extra key/value
    	// - key: "foo"
    	//   valueExpression: "'bar'"
    	// This will result in an extra attribute - foo: ["bar"]
    	//
    	// hard-coded key, value copying claim value
    	// - key: "foo"
    	//   valueExpression: "claims.some_claim"
    	// This will result in an extra attribute - foo: [value of some_claim]
    	//
    	// hard-coded key, value derived from claim value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	}
    }
    
    // unsafeRead aggregates the delta for this shard into out.
    //
    // Unsafe because it does so without any synchronization. The
    // world must be stopped.
    func (m *consistentHeapStats) unsafeRead(out *heapStatsDelta) {
    	assertWorldStopped()
    
    	for i := range m.stats {
    		out.merge(&m.stats[i])
    	}
    }
    
    // unsafeClear clears the shard.
    //
    // Unsafe because the world must be stopped and values should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                cachedValue = null;
            }
    
            public void cache(LocalComponentGraphResolveState state, boolean useStrongReference) {
                if (useStrongReference) {
                    // Keep a hard reference to the state for re-evaluation on mutation
                    // and to force the value to be reused for resolution of other configurations
                    reference = null;
                    cachedValue = state;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&f.MaxPerPodContainerCount, "maximum-dead-containers-per-container", f.MaxPerPodContainerCount, "Maximum number of old instances to retain per container.  Each container takes up some disk space.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

    In general publishing dependencies to enforced platforms is a mistake: enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. This can result in hard to diagnose dependency resolution errors. If you did this intentionally you can disable this check by adding 'enforced-platform' to the suppressed validations of the :generateMetadataFileForMavenPublication task."""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. pkg/volume/util/util_test.go

    					NFS: &v1.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    			expectedMountList: []string{"ro", "nfsvers=3", "fsid=100", "hard"},
    			systemOptions:     []string{"fsid=100", "hard"},
    		},
    		"vol-with-sys-opts-with-dup": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//
    	// hard-coded extra key/value
    	// - key: "foo"
    	//   valueExpression: "'bar'"
    	// This will result in an extra attribute - foo: ["bar"]
    	//
    	// hard-coded key, value copying claim value
    	// - key: "foo"
    	//   valueExpression: "claims.some_claim"
    	// This will result in an extra attribute - foo: [value of some_claim]
    	//
    	// hard-coded key, value derived from claim value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      bool weight_only_quantization = false;
    
      // The minimum number of elements in a weights array required to apply
      // quantization. This is especially useful not to quantize small tensors as
      // it is hard to get performance benefits from them with quantization. Used
      // in MLIR dynamic range quantizer with int8 weight data type.
      int64_t minimum_elements_for_weights = 1024;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/controller/certificates/signer/signer.go

    func (s *signer) duration(expirationSeconds *int32) time.Duration {
    	if expirationSeconds == nil {
    		return s.certTTL
    	}
    
    	// honor requested duration is if it is less than the default TTL
    	// use 10 min (2x hard coded backdate above) as a sanity check lower bound
    	const min = 10 * time.Minute
    	switch requestedDuration := csr.ExpirationSecondsToDuration(*expirationSeconds); {
    	case requestedDuration > s.certTTL:
    		return s.certTTL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/main/config/openapi/openapi-user.yaml

              required: false
              schema:
                type: string
                example: en
            - name: preference
              in: query
              description: String to specify a shard for searching
              required: false
              schema:
                type: string
                example: abc
            - name: callback
              in: query
              description: Callback name for using JSONP
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top