Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    }
    
    // templatedOverloads returns overloads for each of the provided types. The template function is called with each type
    // name (map key) and type to construct the overloads.
    func templatedOverloads(types []namedCELType, template func(name string, t *cel.Type) cel.FunctionOpt) []cel.FunctionOpt {
    	overloads := make([]cel.FunctionOpt, len(types))
    	i := 0
    	for _, t := range types {
    		overloads[i] = template(t.typeName, t.celType)
    		i++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/CandidateMethods.java

         * @param methodName Method name
         * @return Overloaded candidate methods named {@literal methodName} indexed by signature equivalence or
         * {@literal null} if none
         */
        Map<Equivalence.Wrapper<Method>, Collection<Method>> overloadedMethodsNamed(String methodName) {
            if (candidates.containsKey(methodName)) {
                Map<Equivalence.Wrapper<Method>, Collection<Method>> overloads = candidates.get(methodName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                // TODO: report functions with more than one lambda, as those are not supported for now
                return null
            }
    
            val overloads: List<FunctionResolutionAndBinding> = lookupFunctions(functionCall, argResolutions, context)
    
            return invokeIfSingleOverload(overloads, functionCall, argResolutions)?.also {
                val function = it.function
                val receiver = it.receiver
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      template <typename T>
      inline Message& operator <<(const T& val) {
        // Some libraries overload << for STL containers.  These
        // overloads are defined in the global namespace instead of ::std.
        //
        // C++'s symbol lookup rule (i.e. Koenig lookup) says that these
        // overloads are visible in either the std namespace or the global
        // namespace, but not other namespaces, including the testing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      template <typename T>
      inline Message& operator <<(const T& val) {
        // Some libraries overload << for STL containers.  These
        // overloads are defined in the global namespace instead of ::std.
        //
        // C++'s symbol lookup rule (i.e. Koenig lookup) says that these
        // overloads are visible in either the std namespace or the global
        // namespace, but not other namespaces, including the testing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // overload between:
      //
      //   PrintTo(const T& x, ...);
      //   PrintTo(T* x, ...);
      DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
    }
    
    // The following list of PrintTo() overloads tells
    // UniversalPrinter<T>::Print() how to print standard types (built-in
    // types, strings, plain arrays, and pointers).
    
    // Overloads for various char types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    ** `getName()`
    ** `getPath()`
    ** `getBuildTreePath()`
    ** `getProjectDir()`
    ** `getRootDir()`
    ** `project()` overloads
    ** `getChildProjects()`
    ** `getSubprojects()`
    ** `subprojects()` overloads
    ** `getAllProjects()`
    ** `allprojects()` overloads
    
    Note that isolated projects is a pre-alpha feature.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // overload between:
      //
      //   PrintTo(const T& x, ...);
      //   PrintTo(T* x, ...);
      DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
    }
    
    // The following list of PrintTo() overloads tells
    // UniversalPrinter<T>::Print() how to print standard types (built-in
    // types, strings, plain arrays, and pointers).
    
    // Overloads for various char types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResource.java

         *
         * @throws ResourceException on failure to read the content.
         * @throws org.gradle.api.resources.MissingResourceException when the resource does not exist
         */
        @SuppressWarnings("overloads")
        ExternalResourceReadResult<Void> withContent(Action<? super InputStream> readAction) throws ResourceException;
    
        /**
         * Executes the given action against the binary contents of this resource.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

      }
    
      // 'test' to demonstrate some potentially ambiguous overloads.  This 'test' is kind of strange,
      // but essentially each line will be a call to a Preconditions method that, but for a documented
      // change would be a compiler error.
      // See http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.12.2 for the spec on
      // how javac selects overloads
      @SuppressWarnings("null")
      public void overloadSelection() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top