Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildCacheClientModule (0.46 sec)

  1. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

    @SuppressWarnings("MethodMayBeStatic")
    class BuildCacheClientModule extends AbstractModule {
        private static final Logger LOGGER = LoggerFactory.getLogger(BuildCacheClientModule.class);
    
        private final String buildInvocationId;
    
        public BuildCacheClientModule(String buildInvocationId) {
            this.buildInvocationId = buildInvocationId;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

        private final BuildCacheController buildCacheController;
        private final FileSystemAccess fileSystemAccess;
    
        public static void main(String[] args) throws IOException {
            Guice.createInjector(new BuildCacheClientModule("build-1"))
                .getInstance(ExampleBuildCacheClient.class)
                .useBuildCache();
            System.exit(0);
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top