Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for campus (0.26 sec)

  1. pilot/pkg/networking/core/httproute.go

    // foo:80, foo.local:80, foo.local.campus:80, with and without ports. It will not generate
    // foo.local.campus.net (full hostname) since its already added elsewhere.
    //
    // - Given foo.local.campus.net on proxy domain remote.campus.net, this function generates
    // foo.local:80, foo.local.campus:80
    //
    // - Given foo.local.campus.net on proxy domain "" or proxy domain example.com, this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca_test.go

    	rsaKeySize := 2048
    
    	caopts, err := NewSelfSignedIstioCAOptions(context.Background(),
    		0, caCertTTL, rootCertCheckInverval, defaultCertTTL,
    		maxCertTTL, org, false, false, caNamespace, client.CoreV1(),
    		rootCertFile, false, rsaKeySize)
    	if err != nil {
    		t.Fatalf("Failed to create a self-signed CA Options: %v", err)
    	}
    
    	ca, err := NewIstioCA(caopts)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	// countWaiting is the number of fuzzing executions the coordinator is
    	// waiting on workers to complete.
    	countWaiting int64
    
    	// corpus is a set of interesting values, including the seed corpus and
    	// generated values that workers reported as interesting.
    	corpus corpus
    
    	// minimizationAllowed is true if one or more of the types of fuzz
    	// function's parameters can be minimized.
    	minimizationAllowed bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    		// or it is `cacerts` secret mounted with "istio-generated" key set.
    		caOpts, err = s.createSelfSignedCACertificateOptions(&fileBundle, opts)
    		if err != nil {
    			return nil, err
    		}
    		caOpts.OnRootCertUpdate = s.updateRootCertAndGenKeyCert
    	} else {
    		// The secret is mounted and the "istio-generated" key is not used.
    		log.Info("Use local CA certificate")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/testing/fuzz.go

    	testContext *testContext
    
    	// inFuzzFn is true when the fuzz function is running. Most F methods cannot
    	// be called when inFuzzFn is true.
    	inFuzzFn bool
    
    	// corpus is a set of seed corpus entries, added with F.Add and loaded
    	// from testdata.
    	corpus []corpusEntry
    
    	result     fuzzResult
    	fuzzCalled bool
    }
    
    var _ TB = (*F)(nil)
    
    // corpusEntry is an alias to the same type as internal/fuzz.CorpusEntry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz.txt

    stdout FAIL
    stdout 'failed some precondition'
    
    # Test success with seed corpus in f.Fuzz
    go test -run FuzzPass fuzz_add_test.go
    stdout ok
    ! stdout FAIL
    ! stdout 'off by one error'
    
    # Test fatal with seed corpus in f.Fuzz
    ! go test -run FuzzFatal fuzz_add_test.go
    ! stdout ^ok
    stdout FAIL
    stdout 'fatal here'
    
    # Test panic with seed corpus in f.Fuzz
    ! go test -run FuzzPanic fuzz_add_test.go
    ! stdout ^ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. security/pkg/pki/ca/ca.go

    		}
    		return err
    	})
    	pkiCaLog.Infof("Set secret name for self-signed CA cert rotator to %s", caCertName)
    	caOpts.RotatorConfig.secretName = caCertName
    	return caOpts, err
    }
    
    func loadSelfSignedCaSecret(client corev1.CoreV1Interface, namespace string, caCertName string, rootCertFile string, caOpts *IstioCAOptions) error {
    	caSecret, err := client.Secrets(namespace).Get(context.TODO(), caCertName, metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/aenum.go

    	ACMOVWHI
    	ACMOVWLE
    	ACMOVWLS
    	ACMOVWLT
    	ACMOVWMI
    	ACMOVWNE
    	ACMOVWOC
    	ACMOVWOS
    	ACMOVWPC
    	ACMOVWPL
    	ACMOVWPS
    	ACMPB
    	ACMPL
    	ACMPPD
    	ACMPPS
    	ACMPQ
    	ACMPSB
    	ACMPSD
    	ACMPSL
    	ACMPSQ
    	ACMPSS
    	ACMPSW
    	ACMPW
    	ACMPXCHG16B
    	ACMPXCHG8B
    	ACMPXCHGB
    	ACMPXCHGL
    	ACMPXCHGQ
    	ACMPXCHGW
    	ACOMISD
    	ACOMISS
    	ACPUID
    	ACQO
    	ACRC32B
    	ACRC32L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	caOpts := &caOptions{
    		TrustDomain:      s.environment.Mesh().TrustDomain,
    		Namespace:        args.Namespace,
    		ExternalCAType:   ra.CaExternalType(externalCaType),
    		CertSignerDomain: features.CertSignerDomain,
    	}
    
    	if caOpts.ExternalCAType == ra.ExtCAK8s {
    		// Older environment variable preserved for backward compatibility
    		caOpts.ExternalCASigner = k8sSigner
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. src/internal/fuzz/encoding.go

    )
    
    // encVersion1 will be the first line of a file with version 1 encoding.
    var encVersion1 = "go test fuzz v1"
    
    // marshalCorpusFile encodes an arbitrary number of arguments into the file format for the
    // corpus.
    func marshalCorpusFile(vals ...any) []byte {
    	if len(vals) == 0 {
    		panic("must have at least one value to marshal")
    	}
    	b := bytes.NewBuffer([]byte(encVersion1 + "\n"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
Back to top