Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for storing (0.15 sec)

  1. pkg/registry/rbac/clusterrolebinding/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package certificates provides Registry interface and its RESTStorage
    // implementation for storing ClusterRoleBinding objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 12:00:50 UTC 2016
    - 795 bytes
    - Viewed (0)
  2. pkg/registry/batch/job/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package job provides Registry interface and it's RESTStorage
    // implementation for storing Job api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 13:14:38 UTC 2016
    - 747 bytes
    - Viewed (0)
  3. pkg/registry/core/endpoint/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package endpoint provides Registry interface and it's RESTStorage
    // implementation for storing Endpoint api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 14:11:50 UTC 2016
    - 766 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/store.out

    Calculating task graph as no cached configuration is available for tasks: someTask
    > Task :someTask
    
    1 problem was found storing the configuration cache.
    - Build file 'build.gradle': line 6: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 568 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                        finalizedBy ':finalizer:task'
                        dependsOn 'dep'
                    }
                }
            """
    
            expect: "unrequested finalizer dependencies not to run in parallel when storing the graph"
            [":finalized:dep", ":finalized:task", ":finalizer:dep", ":finalizer:task"].each {
                server.expectConcurrent(it)
            }
            configurationCacheRun ":finalized:task", "--parallel"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/role.yaml

    # permissions to verify the webhook is ready and rejecting
    # invalid config. We use --server-dry-run so no config is persisted.
    - apiGroups: ["networking.istio.io"]
      verbs: ["create"]
      resources: ["gateways"]
    
    # For storing CA secret
    - apiGroups: [""]
      resources: ["secrets"]
      # TODO lock this down to istio-ca-cert if not using the DNS cert mesh config
      verbs: ["create", "get", "watch", "list", "update", "delete"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 1021 bytes
    - Viewed (0)
  7. test/fixedbugs/bug320.go

    		// which caused non-deterministic crashes.
    		// This test looks for the bug by checking that the
    		// value received actually ends up in t.
    		// If the allocation happens after storing through
    		// whatever garbage &t holds, the later reference
    		// to t in the case body will use the new pointer and
    		// not see the received value.
    		v += 0x1020304
    		c <- v
    		select {
    		case t := <-c:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 963 bytes
    - Viewed (0)
  8. pkg/registry/core/rangeallocation/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package rangeallocation provides the Registry interface for storing RangeAllocation
    // api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 14:11:50 UTC 2016
    - 698 bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/api/types.go

    	// If the container filesystem and image filesystem are not separate,
    	// than imagefs can store both image layers and writeable layers.
    	SignalImageFsAvailable Signal = "imagefs.available"
    	// SignalImageFsInodesFree is amount of inodes available on filesystem that container runtime uses for storing images layers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/TaskOutputsEnterpriseInternal.java

    public interface TaskOutputsEnterpriseInternal extends TaskOutputsInternal {
    
        /**
         * Whether the task's outputs should be stored in the build cache.
         */
        boolean getStoreInCache();
    
        /**
         * Avoid storing the task's outputs in the build cache.
         * <p>
         * This does not prevent the task from being up-to-date.
         */
        void doNotStoreInCache();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top