Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for create_resource_ (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

        private static final String SNAPSHOT_WRAPPERS = "snapshotWrappers";
        private static final String DOWNLOADED_RESOURCES = "downloadedResources";
        private static final String CREATED_RESOURCES = "createdResources";
        private static final String BUILD_CACHE = "buildCache";
        static final String UNSAFE_MODIFICATION_ERROR = "The property '%s' was modified from an unsafe location (for instance a settings script or plugin).  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/cache/DefaultCacheConfigurationsTest.groovy

            where:
            method << ["set", "value", "convention"]
        }
    
        def "suppliers reflect changes in property values"() {
            when:
            def createdResources = cacheConfigurations.createdResources.removeUnusedEntriesOlderThanAsSupplier
            def downloadedResources = cacheConfigurations.downloadedResources.removeUnusedEntriesOlderThanAsSupplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client_test.go

    		Name:             "name1",
    		Namespace:        "ns1",
    		GroupVersionKind: r.GroupVersionKind(),
    	}
    	createResource(t, store, r, configMeta1)
    
    	configMeta2 := config.Meta{
    		Name:             "name2",
    		Namespace:        "ns2",
    		GroupVersionKind: r.GroupVersionKind(),
    	}
    	createResource(t, store, r, configMeta2)
    
    	retry.UntilSuccessOrFail(t, func() error {
    		l := store.List(r.GroupVersionKind(), "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

                            if (!pidWritten) {
                                System.out.println("Worker daemon pid is " + ProcessHandle.current().pid());
                                FileObject file = processingEnv.getFiler().createResource(StandardLocation.SOURCE_OUTPUT, "resources", "pid.txt");
                                Writer writer = file.openWriter();
                                writer.write(String.valueOf(ProcessHandle.current().pid()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                write(cacheConfigurations.snapshotWrappers.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.downloadedResources.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.createdResources.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.buildCache.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.cleanup)
                write(cacheConfigurations.markingStrategy)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top