Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isInternalServicesRequired (0.28 sec)

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

            return new TransportableActionExecutionSpec(spec.getImplementationClass().getName(), serialize(spec.getIsolatedParams()), spec.getClassLoaderStructure(), spec.getBaseDir(), spec.getProjectCacheDir(), spec.isInternalServicesRequired());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/SimpleActionExecutionSpec.java

            this.implementationClass = implementationClass;
            this.params = params;
            this.usesInternalServices = usesInternalServices;
        }
    
        public boolean isInternalServicesRequired() {
            return usesInternalServices;
        }
    
        public Class<? extends WorkAction<T>> getImplementationClass() {
            return implementationClass;
        }
    
        public T getParameters() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/TransportableActionExecutionSpec.java

            this.projectCacheDir = projectCacheDir;
            this.usesInternalServices = usesInternalServices;
        }
    
        public File getBaseDir() {
            return baseDir;
        }
    
        public boolean isInternalServicesRequired() {
            return usesInternalServices;
        }
    
        public ClassLoaderStructure getClassLoaderStructure() {
            return classLoaderStructure;
        }
    
        public String getImplementationClassName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatedParametersActionExecutionSpec.java

        }
    
        /**
         * The action that will do the work.
         */
        public String getActionImplementationClassName() {
            return actionImplementationClassName;
        }
    
        public boolean isInternalServicesRequired() {
            return usesInternalServices;
        }
    
        public Isolatable<T> getIsolatedParams() {
            return isolatedParams;
        }
    
        public File getProjectCacheDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/TransportableActionExecutionSpecSerializer.java

        @Override
        public void write(Encoder encoder, TransportableActionExecutionSpec spec) throws Exception {
            encoder.writeString(spec.getImplementationClassName());
            encoder.writeBoolean(spec.isInternalServicesRequired());
            encoder.writeString(spec.getBaseDir().getAbsolutePath());
            encoder.writeString(spec.getProjectCacheDir().getAbsolutePath());
            encoder.writeBinary(spec.getSerializedParameters());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerServer.java

                // Exceptions to services available for injection
                Spec<Class<?>> whiteListPolicy;
                if (spec.isInternalServicesRequired()) {
                    whiteListPolicy = element -> true;
                } else {
                    whiteListPolicy = element -> false;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top