Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,457 for otherfile (0.15 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        }
    
        private static boolean differenceIsSignificant(DataSeries<Duration> myTime, DataSeries<Duration> otherTime, double minConfidence) {
            return (myTime.median - otherTime.median).abs() > MINIMUM_DIFFERENCE_WE_CAN_MEASURE &&
                (relativeDifferenceInMedianIsVeryHigh(myTime, otherTime) || DataSeries.confidenceInDifference(myTime, otherTime) > minConfidence)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Verify.java

     * @since 17.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Verify {
      /**
       * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with no
       * message otherwise.
       *
       * @throws VerifyException if {@code expression} is {@code false}
       * @see Preconditions#checkState Preconditions.checkState()
       */
      public static void verify(boolean expression) {
        if (!expression) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    			expectedMetrics: `
    				# HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
    				# TYPE scrape_error gauge
    				scrape_error 1
    				# HELP resource_scrape_error [STABLE] 1 if there was an error while getting container metrics, 0 otherwise
    				# TYPE resource_scrape_error gauge
    				resource_scrape_error 1
    			`,
    		},
    		{
    			name: "arbitrary node metrics",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  4. guava/src/com/google/common/base/Verify.java

     * @since 17.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Verify {
      /**
       * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with no
       * message otherwise.
       *
       * @throws VerifyException if {@code expression} is {@code false}
       * @see Preconditions#checkState Preconditions.checkState()
       */
      public static void verify(boolean expression) {
        if (!expression) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								"format": "byte",
    							},
    							"otherField": map[string]interface{}{
    								"type": "string",
    							},
    						},
    					}},
    				applyPatchOperation{
    					"add unrelated otherField, ratchet invalid old field format",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field":      "doesnt abide any format",
    						"otherField": "value",
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. src/runtime/signal_plan9.go

    	{_SigKill, "kill"},
    
    	// Interrupts can be handled if desired, otherwise they cause an exit.
    	{_SigNotify + _SigKill, "interrupt"},
    	{_SigNotify + _SigKill, "hangup"},
    
    	// Alarms can be handled if desired, otherwise they're ignored.
    	{_SigNotify, "alarm"},
    
    	// Aborts can be handled if desired, otherwise they cause a stack trace.
    	{_SigNotify + _SigThrow, "abort"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         * otherwise.
         */
        public void setProjectRequired(boolean requiresProject) {
            this.projectRequired = requiresProject;
        }
    
        /**
         * @return <code>true</code> if the Mojo needs a Maven project to be executed, <code>false</code> otherwise.
         */
        public boolean isProjectRequired() {
            return projectRequired;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/internal/abi/funcpc.go

    // direct reference of a function defined as ABI0. Otherwise it is a
    // compile-time error.
    //
    // Implemented as a compile intrinsic.
    func FuncPCABI0(f interface{}) uintptr
    
    // FuncPCABIInternal returns the entry PC of the function f. If f is a
    // direct reference of a function, it must be defined as ABIInternal.
    // Otherwise it is a compile-time error. If f is not a direct reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 27 21:15:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. hack/testdata/CRD/multi-crd-list-updated-field.yaml

      apiVersion: company.com/v1
      metadata:
        name: test-list
        labels:
          pruneGroup: "true"
      someField: modifiedField
      otherField: field2
    - kind: Bar
      apiVersion: company.com/v1
      metadata:
        name: test-list
        labels:
          pruneGroup: "true"
      someField: modifiedField
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 349 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/compilersupport.go

    // Do not use internally.
    
    package types2
    
    // If t is a pointer, AsPointer returns that type, otherwise it returns nil.
    func AsPointer(t Type) *Pointer {
    	u, _ := t.Underlying().(*Pointer)
    	return u
    }
    
    // If t is a signature, AsSignature returns that type, otherwise it returns nil.
    func AsSignature(t Type) *Signature {
    	u, _ := t.Underlying().(*Signature)
    	return u
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 22:58:35 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top