Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for no_aop (0.18 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/DefaultProblemDiagnosticsFactory.java

                } else {
                    return locationFromStackTrace(exception, true, true, NO_OP);
                }
            }
    
            @Override
            public ProblemDiagnostics forCurrentCaller() {
                return locationFromStackTrace(getImplicitThrowable(EXCEPTION_FACTORY), false, false, NO_OP);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/CancellationExceptionTransformer.java

        private static final CancellationExceptionTransformer NO_OP = new CancellationExceptionTransformer() {
            @Override
            public RuntimeException transform(RuntimeException e) {
                return e;
            }
        };
    
        static CancellationExceptionTransformer transformerFor(VersionDetails versionDetails) {
            if (versionDetails.honorsContractOnCancel()) {
                return NO_OP;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyHost.java

    import org.gradle.internal.state.ModelObject;
    
    import javax.annotation.Nullable;
    
    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public interface PropertyHost {
        PropertyHost NO_OP = producer -> null;
    
        /**
         * Returns null if the host allows reads of its state, or a string that explains why reads are not allowed.
         */
        @Nullable
        String beforeRead(@Nullable ModelObject producer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheCleanupStrategy.java

     */
    public interface CacheCleanupStrategy {
        CacheCleanupStrategy NO_CLEANUP = new CacheCleanupStrategy() {
            @Override
            public CleanupAction getCleanupAction() {
                return CleanupAction.NO_OP;
            }
    
            @Override
            public CleanupFrequency getCleanupFrequency() {
                return CleanupFrequency.NEVER;
            }
        };
    
        /**
         * Returns the action to perform on cleanup.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleReplacementsData.java

     */
    
    package org.gradle.api.internal.artifacts.dsl;
    
    import org.gradle.api.artifacts.ModuleIdentifier;
    
    import javax.annotation.Nullable;
    
    public interface ModuleReplacementsData {
        ModuleReplacementsData NO_OP = new ModuleReplacementsData() {
            @Nullable
            @Override
            public Replacement getReplacementFor(ModuleIdentifier sourceModule) {
                return null;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

            "manual",
            "nobuilder",
            "notap",
        ],
        visibility = ["//visibility:public"],
        deps = [":windows_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "windows_filesystem_impl",
        srcs = ["windows_filesystem.cc"],
        copts = get_win_copts(),
        tags = [
            "manual",
            "nobuilder",
            "notap",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

        def services = (DefaultServiceRegistry) ServiceRegistryBuilder.builder()
                .parent(NativeServicesTestFixture.getInstance())
                .provider(LoggingServiceRegistry.NO_OP)
                .provider(new GlobalScopeServices(false, AgentStatus.disabled()))
                .build()
    
        def factory = services.get(CacheFactory.class)
        def currentGradleVersion = GradleVersion.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

     * </ol>
     */
    public abstract class LoggingServiceRegistry extends DefaultServiceRegistry {
    
        public static final ServiceRegistrationProvider NO_OP = new ServiceRegistrationProvider() {
            @Provides
            OutputEventListener createOutputEventListener() {
                return OutputEventListener.NO_OP;
            }
        };
    
        private TextStreamOutputEventListener stdoutListener;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top