Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for campus (1 sec)

  1. 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)
  2. src/cmd/go/testdata/script/test_fuzz_modcache.txt

    go mod verify
    
    
    # If the module does include a test corpus, 'go test' (without '-fuzz') should
    # load that corpus and run the fuzz tests against it, but 'go test -fuzz=.'
    # should continue to be rejected.
    
    go get -t example.com/fuzzfail@v0.2.0
    
    ! go test example.com/fuzzfail
    stdout '^\s*fuzzfail_test\.go:7: oops:'
    
    ! go test -fuzz=. example.com/fuzzfail
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/extra-models.md

    ## Múltiplos modelos
    
    Aqui está uma ideia geral de como os modelos poderiam parecer com seus campos de senha e os lugares onde são usados:
    
    === "Python 3.8 and above"
    
        ```Python hl_lines="9  11  16  22  24  29-30  33-35  40-41"
        {!> ../../../docs_src/extra_models/tutorial001.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca_test.go

    	g := NewWithT(t)
    
    	dir := t.TempDir()
    
    	s := Server{
    		kubeClient: kube.NewFakeClient(),
    	}
    	s.kubeClient.RunAndWait(test.NewStop(t))
    	caOpts := &caOptions{
    		Namespace: testNamespace,
    	}
    
    	// Should do nothing because cacerts doesn't exist.
    	err := s.loadCACerts(caOpts, dir)
    	g.Expect(err).Should(BeNil())
    
    	_, err = os.Stat(path.Join(dir, "root-cert.pem"))
    	g.Expect(os.IsNotExist(err)).Should(Equal(true))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. buildscripts/resolve-right-versions.sh

    	fi
    
    	(cd "${MC_BUILD_DIR}" && go build -o "$WORK_DIR/mc")
    
    	# remove mc source.
    	purge "${MC_BUILD_DIR}"
    
    	"${WORK_DIR}/mc" cp --quiet -r "buildscripts/cicd-corpus/" "${WORK_DIR}/cicd-corpus/"
    
    	"${MINIO[@]}" --address ":$start_port" "${WORK_DIR}/cicd-corpus/disk{1...5}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    	sleep 5
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top