Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,036 for 200G (0.06 sec)

  1. src/net/netip/netip_test.go

    			notContains: mustIPs("100.63.255.255", "100.128.0.0"),
    		},
    		{
    			prefix:      "2001:db8::/96",
    			ip:          mustIP("2001:db8::"),
    			bits:        96,
    			contains:    mustIPs("2001:db8::aaaa:bbbb", "2001:db8::1"),
    			notContains: mustIPs("2001:db8::1:aaaa:bbbb", "2001:db9::"),
    		},
    		{
    			prefix:      "0.0.0.0/0",
    			ip:          mustIP("0.0.0.0"),
    			bits:        0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/math/rand/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 rand
    
    import (
    	"math"
    )
    
    /*
     * Exponential distribution
     *
     * See "The Ziggurat Method for Generating Random Variables"
     * (Marsaglia & Tsang, 2000)
     * https://www.jstatsoft.org/v05/i08/paper [pdf]
     */
    
    const (
    	re = 7.69711747013104972
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			// Node2 Score: (50 + 50) / 2 = 50
    			name: "nothing scheduled, resources requested, differently sized nodes",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceCPU:              *resource.NewMilliQuantity(200, resource.DecimalSI),
    					v1.ResourceMemory:           *resource.NewQuantity(100e6, resource.BinarySI),
    					v1.ResourceEphemeralStorage: *resource.NewQuantity(2000, resource.BinarySI),
    				},
    				capacity: v1.ResourceList{
    					v1.ResourceCPU:              *resource.NewMilliQuantity(2000, resource.DecimalSI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			// Node2 Score: (50 + 50) / 2 = 50
    			name: "nothing scheduled, resources requested, differently sized nodes",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  6. src/math/rand/v2/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 rand
    
    import (
    	"math"
    )
    
    /*
     * Exponential distribution
     *
     * See "The Ziggurat Method for Generating Random Variables"
     * (Marsaglia & Tsang, 2000)
     * https://www.jstatsoft.org/v05/i08/paper [pdf]
     */
    
    const (
    	re = 7.69711747013104972
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/timer/TimeoutManagerTest.java

            TimeoutManager.getInstance().start();
            assertNotNull(TimeoutManager.getInstance().thread);
            Thread.sleep(2000);
            assertEquals(count, expiredCount);
            assertEquals(1, TimeoutManager.getInstance().getTimeoutTaskCount());
            task.cancel();
            Thread.sleep(2000);
            assertEquals(0, TimeoutManager.getInstance().getTimeoutTaskCount());
            assertNull(TimeoutManager.getInstance().thread);
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pkg/proxy/util/nodeport_addresses_test.go

    					ips:      nil,
    				},
    			},
    		},
    		{
    			name:  "IPv6 multiple",
    			cidrs: []string{"2001:db8::/64", "::1/128"},
    			itfAddrsPairs: []InterfaceAddrsPair{
    				{
    					itf:   net.Interface{Index: 0, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0},
    					addrs: []net.Addr{&net.IPNet{IP: netutils.ParseIPSloppy("2001:db8::1"), Mask: net.CIDRMask(64, 128)}},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    KUBE_SCHEDULER_RUNASUSER: 2001
    KUBE_SCHEDULER_RUNASGROUP: 2001
    KUBE_ADDON_MANAGER_RUNASUSER: 2002
    KUBE_ADDON_MANAGER_RUNASGROUP: 2002
    KUBE_CONTROLLER_MANAGER_RUNASUSER: 2003
    KUBE_CONTROLLER_MANAGER_RUNASGROUP: 2003
    KUBE_API_SERVER_RUNASUSER: 2004
    KUBE_API_SERVER_RUNASGROUP: 2004
    KUBE_PKI_READERS_GROUP: 2005
    ETCD_RUNASUSER: 2006
    ETCD_RUNASGROUP: 2006
    KUBE_POD_LOG_READERS_GROUP: 2007
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/invalid-addresses.yaml

    metadata:
      name: invalid-addresses
    spec:
      gatewayClassName: acme-lb
      addresses:
      - value: 1200:0000:::AB00:1234:0000:2552:7777:1313
      - value: 21DA:D3:0:2F3B:2AY:FF:FE28:9C5A
      - value: "2001:db8:3c4d:15:0:d234:3eee:"
      - value: "2001:db8:3c4d:15:0:d234:3eee:::"
      - value: ":::1234::"
      - value: "1.1.1"
      - value: "1.a.3.4"
      - value: "foo.com"
      - type: IPAddress
        value: "256.255.255.255"
      - type: "Hostname"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 686 bytes
    - Viewed (0)
Back to top