Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for gcecred (0.1 sec)

  1. security/pkg/credentialfetcher/plugin/gce.go

    	"context"
    	"fmt"
    	"os"
    	"strings"
    	"sync"
    	"time"
    
    	"cloud.google.com/go/compute/metadata"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/util"
    )
    
    var gcecredLog = log.RegisterScope("gcecred", "GCE credential fetcher for istio agent")
    
    // Token refresh frequency is default to 5 minutes.
    var rotationInterval = 5 * time.Minute
    
    // GCE VM credential needs refresh if remaining life time is below 25 minutes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. istioctl/pkg/xds/google.go

    			RootCAs:    systemRoots,
    			MinVersion: tls.VersionTLS12,
    		})),
    		grpc.WithPerRPCCredentials(&meshAuthCredentials{
    			k8sCreds: k8sCreds,
    			gcpCreds: gcpCreds,
    			project:  gcpProject,
    		}),
    	}, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package contains tests that should be geared towards general functionality of the
     * JUnit Platform and may or may not be specific to an engine.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 821 bytes
    - Viewed (0)
  4. internal/auth/credentials.go

    // Equal - returns whether two credentials are equal or not.
    func (cred Credentials) Equal(ccred Credentials) bool {
    	if !ccred.IsValid() {
    		return false
    	}
    	return (cred.AccessKey == ccred.AccessKey && subtle.ConstantTimeCompare([]byte(cred.SecretKey), []byte(ccred.SecretKey)) == 1 &&
    		subtle.ConstantTimeCompare([]byte(cred.SessionToken), []byte(ccred.SessionToken)) == 1)
    }
    
    var timeSentinel = time.Unix(0, 0).UTC()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. internal/auth/credentials_test.go

    	}
    	cred2, err := GetNewCredentials()
    	if err != nil {
    		t.Fatalf("Failed to get a new credential: %v", err)
    	}
    	testCases := []struct {
    		cred           Credentials
    		ccred          Credentials
    		expectedResult bool
    	}{
    		// Same Credentialss.
    		{cred, cred, true},
    		// Empty credentials to compare.
    		{cred, Credentials{}, false},
    		// Empty credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 01 21:09:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/internal/fuzz/pcg.go

    	restore(randState, randInc uint64)
    }
    
    // The functions in pcg implement a 32 bit PRNG with a 64 bit period: pcg xsh rr
    // 64 32. See https://www.pcg-random.org/ for more information. This
    // implementation is geared specifically towards the needs of fuzzing: Simple
    // creation and use, no reproducibility, no concurrency safety, just the
    // necessary methods, optimized for speed.
    
    var globalInc atomic.Uint64 // PCG stream
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/init.go

    				compiler.name = "gcc"
    				out, err := exec.Command(cc, "-v").CombinedOutput()
    				if err != nil {
    					// gcc, but does not support gcc's "-v" flag?!
    					return err
    				}
    				gccRE := regexp.MustCompile(`gcc version (\d+)\.(\d+)`)
    				match = gccRE.FindSubmatch(out)
    			} else {
    				clangRE := regexp.MustCompile(`clang version (\d+)\.(\d+)`)
    				if match = clangRE.FindSubmatch(out); len(match) > 0 {
    					compiler.name = "clang"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/cc_test.go

    				if err != nil {
    					return err
    				}
    				out, err := cmd.Output()
    				if err != nil {
    					// gcc, but does not support gcc's "-v" flag?!
    					return err
    				}
    				gccRE := regexp.MustCompile(`(\d+)\.(\d+)`)
    				match = gccRE.FindSubmatch(out)
    			} else {
    				clangRE := regexp.MustCompile(`clang version (\d+)\.(\d+)`)
    				if match = clangRE.FindSubmatch(out); len(match) > 0 {
    					compiler.name = "clang"
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. go.mod

    	github.com/containerd/typeurl/v2 v2.1.1 // indirect
    	github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
    	github.com/cyphar/filepath-securejoin v0.2.4 // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
    	github.com/docker/distribution v2.8.3+incompatible // indirect
    	github.com/docker/docker v26.0.2+incompatible // indirect
    	github.com/docker/docker-credential-helpers v0.8.1 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/decred/base58,v1.0.0,h1:BVi1FQCThIjZ0ehG+I99NJ51o0xcc9A/fDKhmJxY6+w=,75b1a2c78759ee2e8755156806ce770c9199464c2d58541388d5ec7c000c99e1
    github.com/decred/dcrd/chaincfg,v1.5.1,h1:u1Xbq0VTnAXIHW5ECqrWe0VYSgf5vWHqpSiwoLBzxAQ=,7344cd4dc90a82342c90811c8180b1fef6c79e9c49caa38135f271cf0ecb056f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
Back to top