Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for verified$ (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    }
    
    // Verifier implements request.Authenticator by verifying a client cert on the request, then delegating to the wrapped auth
    type Verifier struct {
    	verifyOptionsFn VerifyOptionFunc
    	auth            authenticator.Request
    
    	// allowedCommonNames contains the common names which a verified certificate is allowed to have.
    	// If empty, all verified certificates are allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    	// Within this directory, `<group>.<version>.<kind>.[json|yaml|pb]` files are required to exist, and are:
    	// * verified to match serialized FilledObjects[GVK]
    	// * verified to decode without error
    	// * verified to round-trip byte-for-byte when re-encoded
    	// * verified to be semantically equal when decoded into memory
    	TestDataDirCurrentVersion string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. pkg/serviceaccount/jwt.go

    }
    
    // JWTTokenAuthenticator authenticates tokens as JWT tokens produced by JWTTokenGenerator
    // Token signatures are verified using each of the given public keys until one works (allowing key rotation)
    // If lookup is true, the service account and secret referenced as claims inside the token are retrieved and verified with the provided ServiceAccountTokenGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. docs/bucket/replication/setup_3site_replication.sh

    	echo "verified sitea-> COMPLETED, siteb-> REPLICA"
    fi
    
    if diff -pruN <(./mc stat --json sitea/bucket/hosts | jq .) <(./mc stat --json sitec/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
    	echo "verified sitea-> COMPLETED, sitec-> REPLICA"
    fi
    
    echo "Verifying the metadata difference between source and target"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    }
    
    // A Verifiers is a collection of known verifier keys.
    type Verifiers interface {
    	// Verifier returns the Verifier associated with the key
    	// identified by the name and hash.
    	// If the name, hash pair is unknown, Verifier should return
    	// an UnknownVerifierError.
    	Verifier(name string, hash uint32) (Verifier, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

            assertTrue(cache.asMap().containsKey(entry.getKey()));
            assertTrue(cache.asMap().containsValue(entry.getValue()));
            // this getUnchecked() call shouldn't be a cache miss; verified below
            assertEquals(entry.getValue(), cache.getUnchecked(entry.getKey()));
          }
          assertEquals(WARMUP_SIZE, cache.stats().missCount());
          checkValidState(cache);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds.go

    			res = true
    		} else {
    			authzError = err
    		}
    		authzResult = &res
    		return res
    	}
    
    	// There are 4 cases of secret reference
    	// Verified cross namespace (by ReferencePolicy). No Authz needed.
    	// Verified same namespace (implicit). No Authz needed.
    	// Unverified cross namespace. Never allowed.
    	// Unverified same namespace. Allowed if authorized.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

    import org.gradle.api.internal.artifacts.verification.verifier.ChecksumVerificationFailure;
    import org.gradle.api.internal.artifacts.verification.verifier.DeletedArtifact;
    import org.gradle.api.internal.artifacts.verification.verifier.MissingChecksums;
    import org.gradle.api.internal.artifacts.verification.verifier.MissingSignature;
    import org.gradle.api.internal.artifacts.verification.verifier.OnlyIgnoredKeys;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/CrossBuildSignatureVerificationService.java

                if (trustedKeys != null) {
                    for (PGPPublicKey trustedKey : trustedKeys) {
                        builder.verified(trustedKey, true);
                    }
                }
                if (validKeys != null) {
                    for (PGPPublicKey validKey : validKeys) {
                        builder.verified(validKey, false);
                    }
                }
                if (failedKeys != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                        LOGGER.debug("Version listing in dynamic revision cache is expired: will perform fresh resolve of '{}' in '{}'", requested, delegate.getName());
                    } else {
                        // When age == 0, verified since the start of this build, assume listing hasn't changed
                        boolean authoritative = cachedModuleVersionList.getAge().toMillis() == 0;
                        result.listed(versionList);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top