Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 513 for objectFactory (0.19 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

            this.deleter = deleter;
    
            ObjectFactory objectFactory = getProject().getObjects();
            this.moduleName = objectFactory.property(String.class);
            this.moduleFile = objectFactory.fileProperty();
            this.modules = getProject().files();
            this.compilerArgs = objectFactory.listProperty(String.class);
            this.objectFileDir = objectFactory.directoryProperty();
            this.source = getProject().files();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

    // end::ad-hoc-task[]
        val buildDirectory = layout.buildDirectory
        val objectFactory = project.objects
        val injected = objectFactory.newInstance<Injected>()
    
    // tag::ad-hoc-task[]
        doLast {
            // Process the templates here
    // end::ad-hoc-task[]
            injected.fs.copy {
                into(buildDirectory.dir("genOutput2"))
                from(objectFactory.fileTree().from("src/templates"))
                expand("year" to "2012")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuite.java

        private final ObjectFactory objectFactory;
        private final Property<SwiftXCTestBinary> testBinary;
        private final Property<SwiftComponent> testedComponent;
        private final DefaultComponentDependencies dependencies;
    
        @Inject
        public DefaultSwiftXCTestSuite(String name, ObjectFactory objectFactory) {
            super(name, SwiftXCTestBinary.class, objectFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopyActionExecuter.java

        private final DocumentationRegistry documentationRegistry;
    
        public CopyActionExecuter(Instantiator instantiator, ObjectFactory objectFactory, FileSystem fileSystem, boolean reproducibleFileOrder, DocumentationRegistry documentationRegistry) {
            this.instantiator = instantiator;
            this.objectFactory = objectFactory;
            this.fileSystem = fileSystem;
            this.reproducibleFileOrder = reproducibleFileOrder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/internal/DefaultDistributionContainer.java

            super(type, instantiator, callbackDecorator);
            this.objectFactory = objectFactory;
            this.fileOperations = fileOperations;
        }
    
        @Override
        protected Distribution doCreate(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

            this.name = name;
            this.componentName = componentName;
            this.visualStudioVersion = objectFactory.property(VersionNumber.class).convention(AbstractCppBinaryVisualStudioTargetBinary.DEFAULT_VISUAL_STUDIO_VERSION);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AbstractArtifactRepository.java

        private Action<? super ActionConfiguration> componentMetadataListerRuleConfiguration;
        private final ObjectFactory objectFactory;
        private final RepositoryContentDescriptorInternal repositoryContentDescriptor;
    
        protected AbstractArtifactRepository(ObjectFactory objectFactory, VersionParser versionParser) {
            this.objectFactory = objectFactory;
            this.repositoryContentDescriptor = createRepositoryDescriptor(versionParser);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestExecutableUtils.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.testing.Test;
    import org.gradle.jvm.toolchain.JavaToolchainSpec;
    import org.gradle.jvm.toolchain.internal.SpecificInstallationToolchainSpec;
    
    import javax.annotation.Nullable;
    
    public class TestExecutableUtils {
    
        @Nullable
        public static JavaToolchainSpec getExecutableToolchainSpec(Test task, ObjectFactory objectFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/SingleParentCopySpec.java

            super(fileCollectionFactory, objectFactory, instantiator, patternSetFactory);
            this.parentResolver = parentResolver;
            this.objectFactory = objectFactory;
            getFilePermissions().convention(parentResolver.getFilePermissions());
            getDirPermissions().convention(parentResolver.getDirPermissions());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 27 14:16:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ToolchainsJvmServices.java

                return objectFactory.newInstance(DefaultJvmToolchainManagement.class, registry);
            }
    
            @Provides
            protected JdkCacheDirectory createJdkCacheDirectory(ObjectFactory objectFactory, GradleUserHomeDirProvider homeDirProvider, FileOperations operations, FileLockManager lockManager, JvmMetadataDetector detector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top