Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for overloads (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/OverloadResolutionTest.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object OverloadResolutionTest {
        @Test
        fun `function overloads with and without configure lambda are disambiguated`() {
            val schema = schemaFromTypes(MyTopLevelReceiver::class, listOf(MyTopLevelReceiver::class))
    
            val code = """
                addSomething(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    	options := make([]cel.EnvOption, 0, len(formatLibraryDecls))
    	for name, overloads := range formatLibraryDecls {
    		options = append(options, cel.Function(name, overloads...))
    	}
    	for name, constantValue := range ConstantFormats {
    		prefixedName := "format." + name
    		options = append(options, cel.Function(prefixedName, cel.Overload(prefixedName, []*cel.Type{}, apiservercel.FormatType, ZeroArgumentFunctionBinding(func() ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.cc

    }
    
    // The following methods are the following `OperatorCode` table object creation
    // methods for backward compatibility.  These are manually copied from the
    // flatbuffer generated code from schema v3. They serve as overloads for the
    // v3a's CreateOperatorCode functions in schema_generated.h and enable code that
    // still assumes flatbuffer schema v3 to be unchanged with the inclusion of the
    // schema_utils header.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyContextManager.java

    import org.gradle.api.Transformer;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    @ThreadSafe
    @SuppressWarnings("overloads")
    @ServiceScope(Scope.Global.class)
    public interface IvyContextManager {
        /**
         * Executes the given action against an Ivy instance. Sets up the Ivy context before the action and cleans up at the end.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

            return [true]
        }
    
        @Override
        def testCases() {
            return [
                // varInitializer | processCreator | expectedPwdSuffix | expectedEnvVar
                // Runtime.exec() overloads
                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top