Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for instantiation (0.23 sec)

  1. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

    import org.gradle.internal.event.ListenerManager
    import org.gradle.internal.installation.CurrentGradleInstallation
    import org.gradle.internal.installation.GradleInstallation
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.management.DependencyResolutionManagementInternal
    import org.gradle.internal.operations.BuildOperationRunner
    import org.gradle.internal.operations.TestBuildOperationRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// type is expected: in type or function instantiation.
    	//
    	// Example:
    	//  type T int
    	//
    	//  var _ T[int]
    	NotAGenericType
    
    	// WrongTypeArgCount occurs when a type or function is instantiated with an
    	// incorrect number of type arguments, including when a generic type or
    	// function is used without instantiation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    // equivalent, they may be Go identical or at least assignable, or
    // they may be in the type set of a constraint.
    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    )
    
    const (
    	// Upper limit for recursion depth. Used to catch infinite recursions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

    import org.gradle.api.testing.toolchains.internal.TestNGTestToolchain;
    import org.gradle.api.testing.toolchains.internal.TestNGToolchainParameters;
    import org.gradle.internal.Actions;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.isolated.IsolationScheme;
    import org.gradle.internal.service.ServiceLookup;
    import org.gradle.internal.service.ServiceRegistry;
    
    import javax.inject.Inject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/internal/types/errors/codes.go

    	// type is expected: in type or function instantiation.
    	//
    	// Example:
    	//  type T int
    	//
    	//  var _ T[int]
    	NotAGenericType
    
    	// WrongTypeArgCount occurs when a type or function is instantiated with an
    	// incorrect number of type arguments, including when a generic type or
    	// function is used without instantiation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    // equivalent, they may be Go identical or at least assignable, or
    // they may be in the type set of a constraint.
    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    package types2
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    )
    
    const (
    	// Upper limit for recursion depth. Used to catch infinite recursions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object.go

    func (obj *Var) IsField() bool { return obj.isField }
    
    // Origin returns the canonical Var for its receiver, i.e. the Var object
    // recorded in Info.Defs.
    //
    // For synthetic Vars created during instantiation (such as struct fields or
    // function parameters that depend on type arguments), this will be the
    // corresponding Var on the generic (uninstantiated) type. For all other Vars
    // Origin returns the receiver.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/go/types/object.go

    func (obj *Var) IsField() bool { return obj.isField }
    
    // Origin returns the canonical Var for its receiver, i.e. the Var object
    // recorded in Info.Defs.
    //
    // For synthetic Vars created during instantiation (such as struct fields or
    // function parameters that depend on type arguments), this will be the
    // corresponding Var on the generic (uninstantiated) type. For all other Vars
    // Origin returns the receiver.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/go/types/check.go

    	unionTypeSets map[*Union]*_TypeSet      // computed type sets for union types
    	mono          monoGraph                 // graph for detecting non-monomorphizable instantiation loops
    
    	firstErr error                 // first error encountered
    	methods  map[*TypeName][]*Func // maps package scope type names to associated non-blank (non-interface) methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    	unionTypeSets map[*Union]*_TypeSet        // computed type sets for union types
    	mono          monoGraph                   // graph for detecting non-monomorphizable instantiation loops
    
    	firstErr error                    // first error encountered
    	methods  map[*TypeName][]*Func    // maps package scope type names to associated non-blank (non-interface) methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top