Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,347 for 200G (0.04 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

    /*
     * Copyright (C) 2009 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/envvars/envvars_test.go

    		{Name: "SUPER_IPV6_SERVICE_HOST", Value: "2001:DB8::"},
    		{Name: "SUPER_IPV6_SERVICE_PORT", Value: "8084"},
    		{Name: "SUPER_IPV6_SERVICE_PORT_U_D_P", Value: "8084"},
    		{Name: "SUPER_IPV6_SERVICE_PORT_T_C_P", Value: "8084"},
    		{Name: "SUPER_IPV6_PORT", Value: "udp://[2001:DB8::]:8084"},
    		{Name: "SUPER_IPV6_PORT_8084_UDP", Value: "udp://[2001:DB8::]:8084"},
    		{Name: "SUPER_IPV6_PORT_8084_UDP_PROTO", Value: "udp"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 05:56:27 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  4. internal/amztime/iso8601_time_test.go

    		expectedOutput string
    	}{
    		{
    			date:           time.Date(2009, time.November, 13, 4, 51, 1, 940303531, time.UTC),
    			expectedOutput: "2009-11-13T04:51:01.940Z",
    		},
    		{
    			date:           time.Date(2009, time.November, 13, 4, 51, 1, 901303531, time.UTC),
    			expectedOutput: "2009-11-13T04:51:01.901Z",
    		},
    		{
    			date:           time.Date(2009, time.November, 13, 4, 51, 1, 900303531, time.UTC),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Dec 12 18:28:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/endpoint_test.go

    			expectedHost: "1.2.3.4",
    			expectedPort: "1234",
    		},
    		{
    			name:         "valid ipv6",
    			hostport:     "2001:db8::1",
    			expectedHost: "2001:db8::1",
    			expectedPort: "",
    		},
    		{
    			name:         "valid ipv6:port",
    			hostport:     "[2001:db8::1]:1234",
    			expectedHost: "2001:db8::1",
    			expectedPort: "1234",
    		},
    		{
    			name:          "invalid port(not a number)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top