Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 594 for instantiation (0.24 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkersServices.java

    import org.gradle.internal.concurrent.WorkerLimits;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.isolation.IsolatableFactory;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.operations.BuildOperationRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/examples/inference2.go

    func f6[P any](int) P    { var x P; return x }
    func f7[P any](P) string { return "" }
    
    // initialization expressions
    var (
    	v1           = f1 // ERROR "cannot use generic function f1 without instantiation"
    	v2 func(int) = f2 // ERROR "cannot infer P"
    
    	v3 func(int)     = f1
    	v4 func() int    = f2
    	v5 func(int) int = f3
    	_  func(int) int = f3[int]
    
    	v6 func(int, int)     = f4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/internal/NameValidatorTest.groovy

    import org.gradle.api.internal.project.taskfactory.TaskInstantiator
    import org.gradle.api.internal.tasks.DefaultSourceSetContainer
    import org.gradle.internal.id.ConfigurationCacheableIdFactory
    import org.gradle.internal.instantiation.InstantiationScheme
    import org.gradle.nativeplatform.internal.DefaultFlavorContainer
    import org.gradle.util.AttributeTestUtil
    import org.gradle.util.Path
    import org.gradle.util.TestUtil
    import spock.lang.Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 22:27:15 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

     * to attempt to locate a matching role by its usage characteristics.
     *
     * @since 8.1
     */
    public final class ConfigurationRoles {
    
        private ConfigurationRoles() {
            // Private to prevent instantiation.
        }
    
        /**
         * An unrestricted configuration, which can be used for any purpose.
         *
         * This is available for backwards compatibility, but should not be used for new configurations.  It is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepositoryTest.groovy

    import org.gradle.api.internal.filestore.DefaultArtifactIdentifierFileStore
    import org.gradle.api.model.ObjectFactory
    import org.gradle.internal.component.external.model.ModuleComponentArtifactMetadata
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.resource.ExternalResourceRepository
    import org.gradle.internal.resource.local.LocallyAvailableResourceFinder
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cpu_device.cc

    limitations under the License.
    ==============================================================================*/
    
    // Registers the XLA_CPU device, which is an XlaDevice instantiation that runs
    // operators using XLA via the XLA "Host" (CPU) backend.
    
    #include <array>
    
    #include "absl/memory/memory.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/flags.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      of most plexus components has been to avoid instance state like the plague.
      With the current parameter passing model of mojos, this will not be possible,
      particularly when we move mojos to a singleton instantiation model, and then
      run a reactorized project...the successive calls may leave behind configuration
      artifacts from invocation to invocation.
    
    Maven Modifications
    
    * DefaultPluginManager
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeScopeServices.java

            DomainObjectCollectionFactory domainObjectCollectionFactory, NamedObjectInstantiator instantiator
        ) {
            return new DefaultObjectFactory(
                instantiatorFactory.decorate(buildTree.getServices()),
                instantiator,
                directoryFileTreeFactory,
                patternSetFactory,
                propertyFactory,
                filePropertyFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

    import org.gradle.cache.internal.DefaultCrossBuildInMemoryCacheFactory;
    import org.gradle.internal.event.DefaultListenerManager;
    import org.gradle.internal.event.ScopedListenerManager;
    import org.gradle.internal.instantiation.generator.DefaultInstantiatorFactory;
    import org.gradle.internal.properties.annotations.NestedValidationUtil;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

    import org.gradle.internal.event.ListenerBroadcast;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.logging.text.StyledTextOutputFactory;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ScopedServiceRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top