Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 159 for Verifying (0.19 sec)

  1. build/common.sh

    #   DOCKER_MOUNT_ARGS
    #   LOCAL_OUTPUT_BUILD_CONTEXT
    # shellcheck disable=SC2120 # optional parameters
    function kube::build::verify_prereqs() {
      local -r require_docker=${1:-true}
      kube::log::status "Verifying Prerequisites...."
      kube::build::ensure_tar || return 1
      kube::build::ensure_rsync || return 1
      if ${require_docker}; then
        kube::build::ensure_docker_in_path || return 1
        if kube::build::is_osx; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge_test.go

    	}
    	s.ShouldStop = func() bool {
    		if availableWork.Load() <= stopAt.Load() {
    			return true
    		}
    		return false
    	}
    	s.GoMaxProcs = func() int32 {
    		return 1
    	}
    
    	// Define a helper for verifying that various properties hold.
    	verifyScavengerState := func(t *testing.T, expWork uint64) {
    		t.Helper()
    
    		// Check to make sure it did the amount of work we expected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	unstructuredList, listSupported, err := d.listCollection(ctx, gvr, namespace)
    	if err != nil {
    		logger.V(5).Info("Namespace controller - deleteAllContentForGroupVersionResource - error verifying no items in namespace", "namespace", namespace, "resource", gvr, "err", err)
    		return gvrDeletionMetadata{finalizerEstimateSeconds: estimate}, err
    	}
    	if !listSupported {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  4. src/crypto/rsa/rsa.go

    // possible.
    //
    // Two sets of interfaces are included in this package. When a more abstract
    // interface isn't necessary, there are functions for encrypting/decrypting
    // with v1.5/OAEP and signing/verifying with v1.5/PSS. If one needs to abstract
    // over the public key primitive, the PrivateKey type implements the
    // Decrypter and Signer interfaces from the crypto package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    the file containing certificate authority certificates to use in verifying a presented server certificate.' type: string clientCertificate: description: REQUIRED if mode is `MUTUAL`. type: string credentialName: description: The name of the secret that holds the TLS certs for the client including the CA certificates. type: string insecureSkipVerify: description: '`insecureSkipVerify` specifies whether the proxy should skip verifying the CA signature and SAN for the server certificate corresponding...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/dependency_resolution.html">Understanding Resolution</a></li>
                            <li><a href="../userguide/dependency_verification.html">Verifying dependencies</a></li>
                        </ul>
                    </li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

                       changing = true
                    }
                }
            """
    
            when:
            run ":compileJava"
    
            then:
            noExceptionThrown()
        }
    
        def "fails verifying the file but not resolution itself if verification metadata fails for #kind"() {
            createMetadataFile {
                addChecksum("org:foo:1.0", kind, "invalid")
            }
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. cmd/server-main.go

    				globalHTTPServerErrorCh <- err
    				return
    			}
    			globalHTTPServerErrorCh <- serveFn()
    		}()
    
    		setHTTPServer(httpServer)
    	})
    
    	if globalIsDistErasure {
    		bootstrapTrace("verifying system configuration", func() {
    			// Additionally in distributed setup, validate the setup and configuration.
    			if err := verifyServerSystemConfig(GlobalContext, globalEndpoints, globalGrid.Load()); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (3)
  9. src/cmd/compile/internal/types2/decl.go

    		// See go.dev/issue/52529: we must delay the expansion of underlying here, as
    		// base may not be fully set-up.
    		check.later(func() {
    			check.checkFieldUniqueness(base)
    		}).describef(obj, "verifying field uniqueness for %v", base)
    
    		// Checker.Files may be called multiple times; additional package files
    		// may add methods to already type-checked types. Add pre-existing methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. cmd/sts-handlers.go

    			},
    			Roots: globalRootCAs,
    		})
    		if err != nil {
    			writeSTSErrorResponse(ctx, w, ErrSTSInvalidClientCertificate, err)
    			return
    		}
    	} else {
    		// Technically, there is no security argument for verifying the key usage
    		// when we don't verify that the certificate has been issued by a trusted CA.
    		// Any client can create a certificate with arbitrary key usage settings.
    		//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top