Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 827 for verified$ (0.2 sec)

  1. cmd/kubeadm/app/util/pubkeypin/pubkeypin_test.go

    y4h5rWdNnzBHWAGf7zJ0oEDV6W6RSwNXtC0JNnLaeIUm/6xdSddJlQPwUv8YH4jX
    c1vuFqTnJBPcb7W//R/GI2Paicm1cmns9NLnPR35exHxFTy+D1yxmGokpoPMdife
    aH+sfuxT8xeTPb3kjzF9eJTlnEquUDLM
    -----END CERTIFICATE-----`
    
    // expectedHash can be verified using the openssl CLI.
    const expectedHash = `sha256:345959acb2c3b2feb87d281961c893f62a314207ef02599f1cc4a5fb255480b3`
    
    // testCert2PEM is a second test cert generated the same way as testCertPEM
    const testCert2PEM = `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	"k8s.io/utils/ptr"
    )
    
    // The objects that define an apiserver's initial behavior.  The
    // registered defaulting procedures make no changes to these
    // particular objects (this is verified in the unit tests of the
    // internalbootstrap package; it can not be verified in this package
    // because that would require importing k8s.io/kubernetes).
    var (
    	MandatoryPriorityLevelConfigurations = []*flowcontrol.PriorityLevelConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. operator/pkg/verifier/verifier.go

    		kclient:          client,
    	}
    
    	for _, opt := range options {
    		opt(&verifier)
    	}
    
    	return &verifier, nil
    }
    
    func (v *StatusVerifier) Colorize() {
    	v.successMarker = color.New(color.FgGreen).Sprint(v.successMarker)
    	v.failureMarker = color.New(color.FgRed).Sprint(v.failureMarker)
    }
    
    // Verify implements Verifier interface. Here we check status of deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519vectors_test.go

    		message := []byte(v.M)
    
    		didVerify := ed25519.Verify(publicKey, message, signature)
    		if didVerify && !expectedToVerify {
    			t.Errorf("#%d: vector with flags %s unexpectedly verified", i, v.Flags)
    		}
    		if !didVerify && expectedToVerify {
    			t.Errorf("#%d: vector with flags %s unexpectedly rejected", i, v.Flags)
    		}
    	}
    }
    
    func downloadEd25519Vectors(t *testing.T) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. hack/verify-vendor.sh

      popd >/dev/null 2>&1
    done
    pushd "${_kubetmp}" >/dev/null 2>&1
      echo "Tidying k8s.io/kubernetes..."
      GODEBUG=gocacheverify=1 go mod tidy
    popd >/dev/null 2>&1
    
    echo "Vendor Verified."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/compress/zlib/reader.go

    		z.err = ErrChecksum
    		return n, z.err
    	}
    	return n, io.EOF
    }
    
    // Calling Close does not close the wrapped [io.Reader] originally passed to [NewReader].
    // In order for the ZLIB checksum to be verified, the reader must be
    // fully consumed until the [io.EOF].
    func (z *reader) Close() error {
    	if z.err != nil && z.err != io.EOF {
    		return z.err
    	}
    	z.err = z.decompressor.Close()
    	return z.err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    //   TOC -> NOTOC (R2 is preserved, st_other==0): A special case where a call stub is not needed.
    
    // This test requires a binutils with power10 and ELFv2 1.5 support. This is earliest verified version.
    .if .gasversion. >= 23500
    
    // A function which does not guarantee R2 is preserved.
    // R2 is clobbered here to ensure the stubs preserve it.
    	.globl	notoc_nor2_func
    	.type	notoc_nor2_func, @function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pkg/security/mock.go

    	}
    
    	tlsInfo := p.AuthInfo.(credentials.TLSInfo)
    	chains := tlsInfo.State.VerifiedChains
    	if len(chains) == 0 || len(chains[0]) == 0 {
    		return fmt.Errorf("no verified chain is found")
    	}
    
    	ids, err := util.ExtractIDs(chains[0][0].Extensions)
    	if err != nil {
    		return fmt.Errorf("failed to extract IDs")
    	}
    	if !sets.New(ids...).Contains(expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service.go

    	}
    	if response.Version != kmsapiVersion {
    		return fmt.Errorf(versionErrorf, response.Version, kmsapiVersion)
    	}
    	g.versionChecked = true
    
    	klog.V(4).InfoS("KMS provider api version verified", "version", response.Version)
    	return nil
    }
    
    // Decrypt a given data string to obtain the original byte data.
    func (g *gRPCService) Decrypt(cipher []byte) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 00:47:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/zerorange_test.go

    //
    // The small/medium/large scenarios below are inspired by the amd64
    // implementation of zerorange, which generates different code
    // depending on the size of the thing that needs to be zeroed out
    // (I've verified at the time of the writing of this test that it
    // exercises the various cases).
    func TestZerorange45372(t *testing.T) {
    	if r := triggerZerorangeLarge(101, 303, 505); r != 1010 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top