Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,773 for compared (0.12 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/generated.proto

    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source.  Only one "target" type
    // should be set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"name":      "name is the name...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source.  Only one "target" type
    // should be set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/toolchain.go

    		return name
    	}
    	return FromToolchain(name)
    }
    
    // ToolchainMax returns the maximum of x and y interpreted as toolchain names,
    // compared using Compare(FromToolchain(x), FromToolchain(y)).
    // If x and y compare equal, Max returns x.
    func ToolchainMax(x, y string) string {
    	if Compare(FromToolchain(x), FromToolchain(y)) < 0 {
    		return y
    	}
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. architecture/standards/0002-avoid-using-java-serialization.md

    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    This is due to Java's use of reflection and the need to maintain a lot of metadata.
    
    - **Size of Serialized Data:**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

            // If there are different output properties compared to the previous execution, then we do have output changes
            if (!previous.keySet().equals(current.keySet())) {
                return true;
            }
    
            // Otherwise, do deep compare of outputs
            ChangeDetectorVisitor visitor = new ChangeDetectorVisitor();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            def compared = PathUtil.getPathComparator(CASE_SENSITIVE).compare(path1, path2)
            def entry1 = new ChildMap.Entry<FileSystemNode>(path1, child1)
            def entry2 = new ChildMap.Entry<FileSystemNode>(path2, child2)
            return compared < 0 ? ChildMapFactory.childMapFromSorted([entry1, entry2]) : ChildMapFactory.childMapFromSorted([entry2, entry1])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// 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
    	// specified in requests and limits, describing each pod in the current
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
Back to top