Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for predictable (0.19 sec)

  1. pilot/pkg/model/virtualservice_test.go

    		})
    	}
    
    	t.Run("test merge order", func(t *testing.T) {
    		root := rootVs.DeepCopy()
    		delegate := delegateVs.DeepCopy()
    		normal := independentVs.DeepCopy()
    
    		// make sorting results predictable.
    		t0 := time.Now()
    		root.CreationTimestamp = t0.Add(1)
    		delegate.CreationTimestamp = t0.Add(2)
    		normal.CreationTimestamp = t0.Add(3)
    
    		checkOrder := func(got []config.Config, _ map[ConfigKey][]ConfigKey) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    		return 0, alertInternalError
    	}
    
    	if c.closeNotifySent {
    		return 0, errShutdown
    	}
    
    	// TLS 1.0 is susceptible to a chosen-plaintext
    	// attack when using block mode ciphers due to predictable IVs.
    	// This can be prevented by splitting each Application Data
    	// record into two records, effectively randomizing the IV.
    	//
    	// https://www.openssl.org/~bodo/tls-cbc.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This change is part of a larger ongoing effort to make the intended behavior of configurations more consistent and predictable, and to unlock further speed and memory improvements.
    
    Currently, the following methods should only be called with these listed allowed usages:
    
    - `resolve()` - RESOLVABLE configurations only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// https://go.dev/issue/31576). Since we want binaries installed by 'dist' to
    	// always go to GOROOT/bin anyway.
    	os.Setenv("GOBIN", gorootBin)
    
    	// Make the environment more predictable.
    	os.Setenv("LANG", "C")
    	os.Setenv("LANGUAGE", "en_US.UTF8")
    	os.Unsetenv("GO111MODULE")
    	os.Setenv("GOENV", "off")
    	os.Unsetenv("GOFLAGS")
    	os.Setenv("GOWORK", "off")
    
    	workdir = xworkdir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/time/format.go

    	return Date(year, Month(month), day, hour, min, sec, nsec, defaultLocation), nil
    }
    
    // parseTimeZone parses a time zone string and returns its length. Time zones
    // are human-generated and unpredictable. We can't do precise error checking.
    // On the other hand, for a correct parse there must be a time zone at the
    // beginning of the string, so it's almost always true that there's one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    order of tests is the default behavior when directly working with _testng.xml_ files, the https://jitpack.io/com/github/cbeust/testng/master/javadoc/org/testng/TestNG.html[TestNG API] that is used by Gradle's TestNG integration executes tests in unpredictable order by default.footnote:[The TestNG documentation contains more details about test ordering when working with `testng.xml` files: http://testng.org/doc/documentation-main.html#testng-xml[].] The ability to preserve test execution order was introduced...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/asm0.go

    	case 0: /* pseudo ops */
    		break
    
    	case 1: /* mov r1,r2 ==> OR r1,r0,r2 */
    		a := AOR
    		if p.As == AMOVW && c.ctxt.Arch.Family == sys.MIPS64 {
    			// on MIPS64, most of the 32-bit instructions have unpredictable behavior,
    			// but SLL is special that the result is always sign-extended to 64-bit.
    			a = ASLL
    		}
    		o1 = OP_RRR(c.oprrr(a), p.From.Reg, REGZERO, p.To.Reg)
    
    	case 2: /* add/sub r1,[r2],r3 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    }
    
    // createTimeIncrementingPodWorkers will guarantee that each call to UpdatePod and each worker goroutine invocation advances the clock by one second,
    // although multiple workers will advance the clock in an unpredictable order. Use to observe
    // successive internal updates to each update pod state when only a single pod is being updated.
    func createTimeIncrementingPodWorkers() (*timeIncrementingWorkers, map[types.UID][]syncPodRecord) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

        # removed when the HNS network is created:
        # https://github.com/Microsoft/hcsshim/issues/299#issuecomment-425491610.
        # The behavior here is very unpredictable: the route may only be removed
        # after some delay, or it may appear to be removed then you'll add it back
        # but then it will be removed once again. So, we first wait a long
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top