Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 564 for unvalidated (0.2 sec)

  1. staging/src/k8s.io/api/certificates/v1/types.go

    	//   must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.
    	//  3. Non-PEM content may appear before or after the "CERTIFICATE" PEM blocks and is unvalidated,
    	//   to allow for explanatory text as described in section 5.2 of RFC7468.
    	//
    	// If more than one PEM block is present, and the definition of the requested spec.signerName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_client_test.go

    		expectedVolumeMountGroup string
    		mustFail                 bool
    		err                      error
    	}{
    		{name: "test ok", volID: "vol-test", stagingTargetPath: testPath, fsType: "ext4", mountOptions: []string{"unvalidated"}},
    		{name: "missing volID", stagingTargetPath: testPath, mustFail: true},
    		{name: "missing target path", volID: "vol-test", mustFail: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    	// EventLog represents a runtime/trace.Log call.
    	EventLog
    
    	// EventStateTransition represents a state change for some resource.
    	EventStateTransition
    
    	// EventExperimental is an experimental event that is unvalidated and exposed in a raw form.
    	// Users are expected to understand the format and perform their own validation. These events
    	// may always be safely ignored.
    	EventExperimental
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

                noMoreInteractions()
            }
    
            where:
            vfsSpec << CHILD_IS_PREFIX
        }
    
        def "invalidate #vfsSpec.searchedPath removes empty invalidated child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
            resultRoot.children == childrenWithSelectedChildRemoved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

                noMoreInteractions()
            }
    
            where:
            vfsSpec << CHILD_IS_PREFIX
        }
    
        def "invalidate #vfsSpec.searchedPath removes empty invalidated child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
            resultRoot.children == childrenWithSelectedChildRemoved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                thread.blockUntil.partialSnapshotsStored
                vfs.invalidate(["${location}/some".toString()])
                instant.invalidated
            }
            then:
            instant.snapshottingStarted < instant.partialSnapshotsStored
            instant.partialSnapshotsStored < instant.invalidated
            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            when:
            def invalidated = set.invalidate(firstPath, diffListener)
            then:
            !invalidated.findMetadata(firstPath).present
            invalidated.findMetadata(secondPath).present
    
            when:
            invalidated = set.invalidate("C:\\", diffListener)
            then:
            !invalidated.findMetadata(firstPath).present
            invalidated.findMetadata(secondPath).present
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  8. pkg/serviceaccount/claims.go

    	}
    
    	if secref != nil {
    		// Make sure token hasn't been invalidated by deletion of the secret
    		secret, err := v.getter.GetSecret(namespace, secref.Name)
    		if err != nil {
    			klog.V(4).Infof("Could not retrieve bound secret %s/%s for service account %s/%s: %v", namespace, secref.Name, namespace, saref.Name, err)
    			return nil, errors.New("service account token has been invalidated")
    		}
    		if secref.UID != string(secret.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

                    diffListener.nodeRemoved(DirectorySnapshot.this);
                    Optional<FileSystemNode> invalidated = child.invalidate(pathInChild, caseSensitivity, new SnapshotHierarchy.NodeDiffListener() {
                        @Override
                        public void nodeRemoved(FileSystemNode node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

         */
        Stream<FileSystemLocationSnapshot> findRootSnapshotsUnder(String absolutePath);
    
        /**
         * Snapshots and stores the result in the VFS.
         *
         * If the snapshotted location is invalidated while snapshotting,
         * then the snapshot is not stored in the VFS to avoid inconsistent state.
         */
        FileSystemLocationSnapshot store(String absolutePath, Supplier<FileSystemLocationSnapshot> snapshotSupplier);
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top