Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,347 for 200G (0.04 sec)

  1. src/os/exec_windows.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"errors"
    	"internal/syscall/windows"
    	"runtime"
    	"syscall"
    	"time"
    )
    
    // Note that Process.mode is always modeHandle because Windows always requires
    // a handle. A manually-created Process literal is not valid.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		namespace0 = "test0"
    		namespace2 = "test2"
    	)
    	const (
    		seedRoot              = 0
    		seedRuntime           = 100
    		seedKubelet           = 200
    		seedMisc              = 300
    		seedPod0Infra         = 1000
    		seedPod0Container0    = 2000
    		seedPod0Container1    = 2001
    		seedPod1Infra         = 3000
    		seedPod1Container     = 4000
    		seedPod2Infra         = 5000
    		seedPod2Container     = 6000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. src/math/rand/normal.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rand
    
    import (
    	"math"
    )
    
    /*
     * Normal distribution
     *
     * See "The Ziggurat Method for Generating Random Variables"
     * (Marsaglia & Tsang, 2000)
     * http://www.jstatsoft.org/v05/i08/paper [pdf]
     */
    
    const (
    	rn = 3.442619855899
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/math/rand/v2/normal.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rand
    
    import (
    	"math"
    )
    
    /*
     * Normal distribution
     *
     * See "The Ziggurat Method for Generating Random Variables"
     * (Marsaglia & Tsang, 2000)
     * http://www.jstatsoft.org/v05/i08/paper [pdf]
     */
    
    const (
    	rn = 3.442619855899
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_FWPRINTF                        = 0x7D1 // 2001
    	SYS_WPRINTF                         = 0x7D2 // 2002
    	SYS_VFWPRINT                        = 0x7D3 // 2003
    	SYS_VFWPRINTF                       = 0x7D3 // 2003
    	SYS_VWPRINTF                        = 0x7D4 // 2004
    	SYS_FWSCANF                         = 0x7D5 // 2005
    	SYS_WSCANF                          = 0x7D6 // 2006
    	SYS_WCTRANS                         = 0x7D7 // 2007
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

      }
    
      public void testIncrementIPv6() throws UnknownHostException {
        InetAddress addressV6_66_0 = InetAddress.getByName("2001:db8::6600");
        InetAddress addressV6_66_ff = InetAddress.getByName("2001:db8::66ff");
        InetAddress addressV6_67_0 = InetAddress.getByName("2001:db8::6700");
    
        InetAddress address = addressV6_66_0;
        for (int i = 0; i < 255; i++) {
          address = InetAddresses.increment(address);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/none_rds.json

    {
        "2001": {
          "name": "2001",
          "virtual_hosts": [
            {
              "name": "s1http.none:2001",
              "domains": [
                "s1http.none",
                "s1http.none:2001"
              ],
              "routes": [
                {
                  "match": {
                    "PathSpecifier": {
                      "Prefix": "/"
                    }
                  },
                  "Action": {
                    "Route": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  8. src/compress/gzip/example_test.go

    	var files = []struct {
    		name    string
    		comment string
    		modTime time.Time
    		data    string
    	}{
    		{"file-1.txt", "file-header-1", time.Date(2006, time.February, 1, 3, 4, 5, 0, time.UTC), "Hello Gophers - 1"},
    		{"file-2.txt", "file-header-2", time.Date(2007, time.March, 2, 4, 5, 6, 1, time.UTC), "Hello Gophers - 2"},
    	}
    
    	for _, file := range files {
    		zw.Name = file.name
    		zw.Comment = file.comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/math/exp.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Exp returns e**x, the base-e exponential of x.
    //
    // Special cases are:
    //
    //	Exp(+Inf) = +Inf
    //	Exp(NaN) = NaN
    //
    // Very large values overflow to 0 or +Inf.
    // Very small values underflow to 1.
    func Exp(x float64) float64 {
    	if haveArchExp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cidr_test.go

    			expr:         `cidr("2001:db8::/32").containsIP(ip("2001:db8::1"))`,
    			expectResult: trueVal,
    		},
    		{
    			name:         "does not contain IP ipv6 (IP)",
    			expr:         `cidr("2001:db8::/32").containsIP(ip("2001:dc8::1"))`,
    			expectResult: falseVal,
    		},
    		{
    			name:         "contains IP ipv6 (string)",
    			expr:         `cidr("2001:db8::/32").containsIP("2001:db8::1")`,
    			expectResult: trueVal,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top