Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 279 for no_op (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

            @Override
            public void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {
                taskPropertySpecs.add(new DefaultValidatingProperty(propertyName, value, optional, ValidationActions.NO_OP));
            }
    
            @Override
            public void visitUnpackedOutputFileProperty(String propertyName, boolean optional, PropertyValue value, OutputFilePropertySpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

                initializer.accept(cache);
            }
            return cache;
        }
    
        public PersistentCache open(File cacheDir, String displayName) {
            return new InMemoryCache(cacheDir, displayName, CleanupAction.NO_OP);
        }
    
        @Override
        public void visitCaches(CacheVisitor visitor) {
            throw new UnsupportedOperationException();
        }
    
        private class InMemoryCache implements PersistentCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/versionmapping/DefaultVersionMappingStrategy.java

                Set<ImmutableAttributes> candidates = attributeBasedMappings.keySet();
                List<ImmutableAttributes> matches = matcher.matches(candidates, variantAttributes, AttributeMatchingExplanationBuilder.NO_OP);
                if (matches.size() == 1) {
                    Collection<Action<? super VariantVersionMappingStrategy>> actions = attributeBasedMappings.get(matches.get(0));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/BytecodeFragment.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.asm;
    
    import org.objectweb.asm.MethodVisitor;
    
    public interface BytecodeFragment {
    
        BytecodeFragment NO_OP = visitor -> {};
    
        void emit(MethodVisitor visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 820 bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/versionmapping/DefaultVersionMappingStrategy.java

                Set<ImmutableAttributes> candidates = attributeBasedMappings.keySet();
                List<ImmutableAttributes> matches = matcher.matches(candidates, variantAttributes, AttributeMatchingExplanationBuilder.NO_OP);
                if (matches.size() == 1) {
                    Collection<Action<? super VariantVersionMappingStrategy>> actions = attributeBasedMappings.get(matches.get(0));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupProgressMonitor.java

    package org.gradle.cache;
    
    public interface CleanupProgressMonitor {
    
        void incrementDeleted();
    
        void incrementSkipped();
    
        void incrementSkipped(long amount);
    
        CleanupProgressMonitor NO_OP = new CleanupProgressMonitor() {
            @Override
            public void incrementDeleted() {
            }
    
            @Override
            public void incrementSkipped() {
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scripts/ProjectScopedScriptResolution.java

    import org.gradle.util.Path;
    
    import java.util.function.Supplier;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface ProjectScopedScriptResolution {
        ProjectScopedScriptResolution NO_OP = new ProjectScopedScriptResolution() {
            @Override
            public <T> T resolveScriptsForProject(Path identityPath, Supplier<T> action) {
                return action.get();
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionRules.java

    import org.gradle.internal.Actions;
    
    /**
     * A service that injects dependency substitution rules into the build.
     */
    public interface DependencySubstitutionRules {
        DependencySubstitutionRules NO_OP = new DependencySubstitutionRules() {
            @Override
            public Action<DependencySubstitution> getRuleAction() {
                return Actions.doNothing();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupAction.java

     * @see CacheBuilder#withCleanupStrategy(CacheCleanupStrategy)
     */
    public interface CleanupAction {
    
        void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor);
    
        CleanupAction NO_OP = new CleanupAction() {
            @Override
            public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
                // no-op
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

            }
            if (subscriptions.isRequested(OperationType.GENERIC)) {
                return new ClientForwardingBuildOperationListener(progressEventConsumer);
            }
            return NO_OP;
        }
    
        @Nonnull
        private ProblemsProgressEventConsumer createProblemsProgressConsumer(ProgressEventConsumer progressEventConsumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top