Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for getObjectFactory (0.26 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

        private final ModularitySpec modularity;
        private File previousCompilationDataFile;
        private final Property<JavaCompiler> javaCompiler;
    
        public JavaCompile() {
            ObjectFactory objectFactory = getObjectFactory();
            compileOptions = objectFactory.newInstance(CompileOptions.class);
            modularity = objectFactory.newInstance(DefaultModularitySpec.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

        private final ModularitySpec modularity;
    
        private String executable;
        private final Property<JavadocTool> javadocTool;
    
        public Javadoc() {
            ObjectFactory objectFactory = getObjectFactory();
            this.modularity = objectFactory.newInstance(DefaultModularitySpec.class);
            JavaToolchainService javaToolchainService = getJavaToolchainService();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

        private final Property<Boolean> incrementalAnalysis;
        private final Property<Integer> threads;
    
        public Pmd() {
            super();
            ObjectFactory objects = getObjectFactory();
            reports = objects.newInstance(PmdReportsImpl.class, this);
            this.rulesMinimumPriority = objects.property(Integer.class);
            this.incrementalAnalysis = objects.property(Boolean.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

        private final Property<JavaLauncher> javaLauncher;
        private File previousCompilationDataFile;
    
        public GroovyCompile() {
            ObjectFactory objectFactory = getObjectFactory();
            CompileOptions compileOptions = objectFactory.newInstance(CompileOptions.class);
            compileOptions.setIncremental(false);
            compileOptions.getIncrementalAfterFailure().convention(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

        }
    
        @Inject
        protected DocumentationRegistry getDocumentationRegistry() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected ObjectFactory getObjectFactory() {
            throw new UnsupportedOperationException();
        }
    
        @TaskAction
        protected void copy() {
            CopyActionExecuter copyActionExecuter = createCopyActionExecuter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

        private long forkEvery;
        private int maxParallelForks = 1;
        private TestExecuter<JvmTestExecutionSpec> testExecuter;
    
        public Test() {
            ObjectFactory objectFactory = getObjectFactory();
            patternSet = getPatternSetFactory().create();
            classpath = objectFactory.fileCollection();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependency.java

            return attributesFactory;
        }
    
        public NotationParser<Object, Capability> getCapabilityNotationParser() {
            return capabilityNotationParser;
        }
    
        public ObjectFactory getObjectFactory() {
            return objectFactory;
        }
    
        private void setAttributes(AttributeContainerInternal attributes) {
            this.attributes = attributes;
        }
    
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

        protected CopyActionExecuter createCopyActionExecuter() {
            Instantiator instantiator = getInstantiator();
            FileSystem fileSystem = getFileSystem();
    
            return new CopyActionExecuter(instantiator, getObjectFactory(), fileSystem, isReproducibleFileOrder(), getDocumentationRegistry());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                    @Input
                    String input
    
                    @Internal
                    File outputDir
    
                    @Inject
                    abstract ObjectFactory getObjectFactory()
    
                    @OutputFiles
                    FileCollection getOutputFileTree() {
                        objectFactory.fileTree().setDir(outputDir).include('**/myOutput.txt')
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyManagementServices.java

            }
    
            @Override
            public AttributesSchema getAttributesSchema() {
                return services.get(AttributesSchema.class);
            }
    
            @Override
            public ObjectFactory getObjectFactory() {
                return services.get(ObjectFactory.class);
            }
    
            @Override
            public DependencyFactory getDependencyFactory() {
                return services.get(DependencyFactory.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top