Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for toGetter (0.38 sec)

  1. staging/src/k8s.io/api/autoscaling/v1/types.go

    	ObjectMetricSourceType MetricSourceType = "Object"
    	// PodsMetricSourceType is a metric describing each pod in the current scale
    	// target (for example, transactions-processed-per-second).  The values
    	// will be averaged together before being compared to the target value.
    	PodsMetricSourceType MetricSourceType = "Pods"
    	// ResourceMetricSourceType is a resource metric known to Kubernetes, as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

     *
     * TODO: move the remote repositories in the requests (plugins will need to access this list somehow)
     * TODO: add request trace so that requests can be linked together and through the resolver
     * TODO: add a Request interface holding session + parent request
     *
     * @since 4.0.0
     */
    @Experimental
    @ThreadSafe
    public interface Session {
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// pods refers to a metric describing each pod in the current scale target
    	// (for example, transactions-processed-per-second).  The values will be
    	// averaged together before being compared to the target value.
    	// +optional
    	Pods *PodsMetricSource `json:"pods,omitempty" protobuf:"bytes,3,opt,name=pods"`
    
    	// resource refers to a resource metric (such as those specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // Analysis
    //===----------------------------------------------------------------------===//
    
    // This structure represents a merged island. It includes all of the islands
    // that can be merged together and the point of insertion of the merged island.
    struct MergedIsland {
      // Construct a new island from the given root.
      explicit MergedIsland(IslandOp root) : insert_point(root) {
        islands.push_back(root);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

         * * elements that create a new object are merged together; the elements from [underlay] will appear first;
         * * if a property appears in both sources, then the property in [overlay] overrides ("shadow") the matching property in [underlay]
         * * properties that appear only one of the sources get copied to the result together; the ones from [underlay] appear first.
         */
        fun overlayResolvedDocuments(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Hashing.java

       * underlying hash functions together. This can be useful if you need to generate hash codes of a
       * specific length.
       *
       * <p>For example, if you need 1024-bit hash codes, you could join two {@link Hashing#sha512} hash
       * functions together: {@code Hashing.concatenating(Hashing.sha512(), Hashing.sha512())}.
       *
       * @since 19.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. src/runtime/metrics.go

    func (s *statDepSet) has(d statDep) bool {
    	return s[d/64]&(1<<(d%64)) != 0
    }
    
    // heapStatsAggregate represents memory stats obtained from the
    // runtime. This set of stats is grouped together because they
    // depend on each other in some way to make sense of the runtime's
    // current heap memory use. They're also sharded across Ps, so it
    // makes sense to grab them all at once.
    type heapStatsAggregate struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Hashing.java

       * underlying hash functions together. This can be useful if you need to generate hash codes of a
       * specific length.
       *
       * <p>For example, if you need 1024-bit hash codes, you could join two {@link Hashing#sha512} hash
       * functions together: {@code Hashing.concatenating(Hashing.sha512(), Hashing.sha512())}.
       *
       * @since 19.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ====
    
    [[connecting_properties_together]]
    == Connecting properties together
    
    An important feature of lazy properties is that they can be connected together so that changes to one property are automatically reflected in other properties.
    
    Here is an example where the property of a task is connected to a property of a project extension:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/authentication_test.go

    			},
    			expectErr: "oidc-issuer-url and oidc-client-id must be specified together when any oidc-* flags are set",
    		},
    		{
    			name: "issuer url set, client id is not set",
    			args: []string{
    				"--oidc-issuer-url=https://testIssuerURL",
    				"--oidc-username-claim=testClaim",
    			},
    			expectErr: "oidc-issuer-url and oidc-client-id must be specified together when any oidc-* flags are set",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
Back to top