Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for overloads (0.15 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

       *
       * <p>See {@link #checkArgument(boolean, String, Object...)} for details.
       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(
          boolean expression,
          // TODO: cl/604933487 - Make errorMessageTemplate consistently @CheckForNull across overloads.
          @CheckForNull String errorMessageTemplate,
          @CheckForNull Object p1,
          @CheckForNull Object p2) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Preconditions.java

       *
       * <p>See {@link #checkArgument(boolean, String, Object...)} for details.
       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(
          boolean expression,
          // TODO: cl/604933487 - Make errorMessageTemplate consistently @CheckForNull across overloads.
          @CheckForNull String errorMessageTemplate,
          @CheckForNull Object p1,
          @CheckForNull Object p2) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    	"fakeFunction": {
    		celgo.Overload("fakeFunction", []*celgo.Type{celgo.StringType}, celgo.StringType,
    			celgo.UnaryBinding(fakeFunction))},
    }
    
    func (*fakeLib) CompileOptions() []celgo.EnvOption {
    	options := make([]celgo.EnvOption, 0, len(testLibraryDecls))
    	for name, overloads := range testLibraryDecls {
    		options = append(options, celgo.Function(name, overloads...))
    	}
    	return options
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        fun addInterceptor(interceptor: Interceptor) =
          apply {
            interceptors += interceptor
          }
    
        @JvmName("-addInterceptor") // Prefix with '-' to prevent ambiguous overloads from Java.
        inline fun addInterceptor(crossinline block: (chain: Interceptor.Chain) -> Response) =
          addInterceptor(Interceptor { chain -> block(chain) })
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            public String getOverloaded() {
                return overloaded;
            }
    
            public void setOverloaded(Number overloaded) {
                this.overloaded = String.format("number = %s", overloaded);
            }
    
            public void setOverloaded(CharSequence overloaded) {
                this.overloaded = String.format("chars = %s", overloaded);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define ADD2  V5 // Overloaded with T1
    #define ADD3H V7 // Overloaded with ADD1H
    #define ADD4H V8 // Overloaded with ADD2H
    #define ZER   V28 // Overloaded with TMP1
    #define CAR1  V6 // Overloaded with YDIG
    #define CAR2  V11 // Overloaded with RED1
    // Constant Selects
    #define SEL1  V13 // Overloaded with RED3
    #define SEL2  V9 // Overloaded with ADD3,SEL5
    #define SEL3  V10 // Overloaded with ADD4,SEL6
    #define SEL4  V6 // Overloaded with YDIG,CAR1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_s390x.s

    #define ADD2  V5 // Overloaded with T1
    #define ADD3H V7 // Overloaded with ADD1H
    #define ADD4H V8 // Overloaded with ADD2H
    #define ZER   V6 // Overloaded with YDIG, CAR2
    #define CAR1  V6 // Overloaded with YDIG, ZER
    #define CAR2  V11 // Overloaded with RED1
    // Constant Selects
    #define SEL1  V13 // Overloaded with RED3
    #define SEL2  V9 // Overloaded with ADD3,SEL5
    #define SEL3  V10 // Overloaded with ADD4,SEL6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

          // We used to have a second template parameter instead of Secret*.  That
          // template parameter would deduce to 'long', making this a better match
          // than the first overload even without the first overload's EnableIf.
          // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to
          // non-pointer argument" (even a deduced integral argument), so the old
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

          // We used to have a second template parameter instead of Secret*.  That
          // template parameter would deduce to 'long', making this a better match
          // than the first overload even without the first overload's EnableIf.
          // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to
          // non-pointer argument" (even a deduced integral argument), so the old
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    	}
    	for i, tt := range tests {
    		if got := tt.a.Overlaps(tt.b); got != tt.want {
    			t.Errorf("%d. (%v).Overlaps(%v) = %v; want %v", i, tt.a, tt.b, got, tt.want)
    		}
    		// Overlaps is commutative
    		if got := tt.b.Overlaps(tt.a); got != tt.want {
    			t.Errorf("%d. (%v).Overlaps(%v) = %v; want %v", i, tt.b, tt.a, got, tt.want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top