Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fakehcn (0.15 sec)

  1. src/cmd/go/testdata/script/version_buildvcs_git.txt

    # there should be an error. It should hint about -buildvcs=false.
    # Also ensure that multiple errors are collected by "go list -e".
    cd ..
    mkdir .git
    env PATH=$WORK${/}fakebin${:}$oldpath
    chmod 0755 $WORK/fakebin/git
    ! exec git help
    cd a
    ! go install
    stderr '^error obtaining VCS status: exit status 1\n\tUse -buildvcs=false to disable VCS stamping.$'
    go list -e -f '{{.ImportPath}}: {{.Error}}' ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tests/fuzz/security_fuzzer.go

    	signedCert, err := f.GetBytes()
    	if err != nil {
    		return 0
    	}
    
    	auth := &authenticate.ClientCertAuthenticator{}
    	kcb := util.NewKeyCertBundleFromPem(nil, nil, certChainBytes, rootCertBytes)
    
    	mockCa := &mockca.FakeCA{
    		SignedCert:    signedCert,
    		KeyCertBundle: kcb,
    	}
    	server, err := ca.New(mockCa, 1, []security.Authenticator{auth}, nil)
    	if err != nil {
    		return 0
    	}
    	csrString, err := f.GetString()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top