Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for randPod (1.8 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    // through the slice and sets the defaults for the omitempty fields that are TTL,
    // Usages and Groups. Token is NOT defaulted with a random one in the API defaulting
    // layer, but set to a random value later at runtime if not set before.
    func SetDefaults_BootstrapTokens(obj *InitConfiguration) {
    
    	if obj.BootstrapTokens == nil || len(obj.BootstrapTokens) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        )
    
        failureConditions {
            // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash
            // Some soak tests produce OOM exceptions
            // There are also random worker crashes for some tests.
            // We have test-retry to handle the crash in tests
            javaCrash = false
        }
    })
    
    private fun determineFlakyTestStrategy(stage: Stage): String {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    	if emLen < hLen+sLen+2 {
    		return nil, ErrMessageTooLong
    	}
    
    	em := make([]byte, emLen)
    	psLen := emLen - sLen - hLen - 2
    	db := em[:psLen+1+sLen]
    	h := em[psLen+1+sLen : emLen-1]
    
    	// 4.  Generate a random octet string salt of length sLen; if sLen = 0,
    	//     then salt is the empty string.
    	//
    	// 5.  Let
    	//       M' = (0x)00 00 00 00 00 00 00 00 || mHash || salt;
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	// Since this is insert we do this *after* the real chain, which will result in it bumping it forward
    	if rb.cfg.TraceLogging && idx >= 0 && command != log.UndefinedCommand {
    		match := params[:idx]
    		// 1337 group is just a random constant to be matched on the log reader side
    		// Size of 20 allows reading the IPv4 IP header.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/internal/trace/mud_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package trace
    
    import (
    	"math"
    	"math/rand"
    	"testing"
    )
    
    func TestMUD(t *testing.T) {
    	// Insert random uniforms and check histogram mass and
    	// cumulative sum approximations.
    	rnd := rand.New(rand.NewSource(42))
    	mass := 0.0
    	var mud mud
    	for i := 0; i < 100; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. OWNERS_ALIASES

        - dims
      sig-node-approvers:
        - Random-Liu
        - dchen1107
        - derekwaynecarr
        - yujuhong
        - sjenning
        - mrunalp
        - klueska
      # emeretus:
      # - dashpole
      # - vishh
      sig-node-cri-approvers:
        - msau42
        - smarterclayton
        - thockin
        - saschagrunert
        - haircommander
        - mikebrow
      sig-node-reviewers:
        - Random-Liu
        - dchen1107
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages.go

    }
    
    func (m *clientHelloMsg) clone() *clientHelloMsg {
    	return &clientHelloMsg{
    		original:                         slices.Clone(m.original),
    		vers:                             m.vers,
    		random:                           slices.Clone(m.random),
    		sessionId:                        slices.Clone(m.sessionId),
    		cipherSuites:                     slices.Clone(m.cipherSuites),
    		compressionMethods:               slices.Clone(m.compressionMethods),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho_update_uuid.go

    	hashedBuildID := notsha256.Sum256([]byte(buildID))
    	rv := hashedBuildID[:16]
    
    	// RFC 4122 conformance (see RFC 4122 Sections 4.2.2, 4.1.3). We
    	// want the "version" of this UUID to appear as 'hashed' as opposed
    	// to random or time-based.  This is something of a fiction since
    	// we're not actually hashing using MD5 or SHA1, but it seems better
    	// to use this UUID flavor than any of the others. This is similar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. buildscripts/verify-healing.sh

    #!/bin/bash -e
    #
    
    set -E
    set -o pipefail
    
    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    WORK_DIR="$PWD/.verify-$RANDOM"
    MINIO_CONFIG_DIR="$WORK_DIR/.minio"
    MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server)
    GOPATH=/tmp/gopath
    
    function start_minio_3_node() {
    	for i in $(seq 1 3); do
    		rm "${WORK_DIR}/dist-minio-server$i.log"
    	done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/index/suffixarray/suffixarray_test.go

    	benchrand = make([]byte, 1e6)
    )
    
    // Of all possible inputs, the random bytes have the least amount of substring
    // repetition, and the repeated bytes have the most. For most algorithms,
    // the running time of every input will be between these two.
    func benchmarkNew(b *testing.B, random bool) {
    	b.ReportAllocs()
    	b.StopTimer()
    	data := benchdata
    	if random {
    		data = benchrand
    		if data[0] == 0 {
    			for i := range data {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top