Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for 111111112 (0.15 sec)

  1. pkg/registry/core/service/portallocator/controller/repair_test.go

    				},
    			},
    			expected: []int{111, 112, 113},
    		},
    		{
    			name: "duplicated nodePort with TCP protocol",
    			serviceSpec: corev1.ServiceSpec{
    				Ports: []corev1.ServicePort{
    					{NodePort: 111, Protocol: corev1.ProtocolTCP},
    					{NodePort: 111, Protocol: corev1.ProtocolTCP},
    					{NodePort: 112, Protocol: corev1.ProtocolUDP},
    				},
    			},
    			expected: []int{111, 111, 112},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            "latest.milestone"   | "select branch" | "2.0"         | '["2.0"]'        | ['2.1', '2.0']     | false           | false            | ["didn't match version 2.1"]
            "1.1"                | "select 1.1"    | "1.1"         | '["1.1"]'        | ['1.1']            | true            | true             | []
            "1.1"                | "select status" | "1.1"         | '["1.1"]'        | ['1.1']            | false           | true             | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/addressmap_test.go

    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/cluster"
    )
    
    const (
    	c1ID = "cluster-1"
    	c2ID = "cluster-2"
    )
    
    var (
    	c1Addresses = []string{"1.1.1.1", "1.1.1.2"}
    	c2Addresses = []string{"2.1.1.1", "2.1.1.2"}
    )
    
    func TestAddressMapLen(t *testing.T) {
    	cases := []struct {
    		name     string
    		newMap   func() *model.AddressMap
    		expected int
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator.java

    import java.util.Map;
    
    /**
     * Allows for comparison of Version instances.
     * Note that this comparator only considers the 'parts' of a version, and does not consider the part 'separators'.
     * This means that it considers `1.1.1 == 1-1-1 == 1.1-1`, and should not be used in cases where this is important.
     * One example where this comparator is inappropriate is if versions should be retained in a TreeMap/TreeSet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    					netip.MustParseAddr("11.11.11.11"),
    				}),
    		},
    		{
    			name: "success: remote cluster k8s svc round robin",
    			host: "details.ns2.svc.cluster.remote.",
    			id:   1,
    			expected: a("details.ns2.svc.cluster.remote.",
    				[]netip.Addr{
    					netip.MustParseAddr("13.13.13.13"),
    					netip.MustParseAddr("14.14.14.14"),
    					netip.MustParseAddr("11.11.11.11"),
    					netip.MustParseAddr("12.12.12.12"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/podcgroupns_test.go

    			},
    			expectPodUID:      "",
    			expectContainerID: "",
    			expectMsg:         "multiple pod UIDs found in cgroups (11111111-b29f-11e7-9350-020968147796, 22222222-b29f-11e7-9350-020968147796)",
    		},
    	} {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_ordinv.go

    	p256OrdSqr(x, _10101, 1)     // _101010
    	p256OrdMul(_101111, _101, x) // _101111
    	p256OrdMul(x, _10101, x)     // _111111 = x6
    	p256OrdSqr(t, x, 2)          // _11111100
    	p256OrdMul(t, t, _11)        // _11111111 = x8
    	p256OrdSqr(x, t, 8)          // _ff00
    	p256OrdMul(x, x, t)          // _ffff = x16
    	p256OrdSqr(t, x, 16)         // _ffff0000
    	p256OrdMul(t, t, x)          // _ffffffff = x32
    
    	p256OrdSqr(x, t, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256.go

    	//
    	//	_10       = 2*1
    	//	_11       = 1 + _10
    	//	_1100     = _11 << 2
    	//	_1111     = _11 + _1100
    	//	_11110000 = _1111 << 4
    	//	_11111111 = _1111 + _11110000
    	//	x16       = _11111111 << 8 + _11111111
    	//	x32       = x16 << 16 + x16
    	//	return      ((x32 << 32 + 1) << 96 + 1) << 94
    	//
    	var t0 = new(fiat.P256Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	t0.Square(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            1      | Fruit.apples  | 3      | Fruit.apples     | 0.333333
            2      | Fruit.apples  | 3      | Fruit.apples     | 0.666667
            4      | Fruit.apples  | 1.2    | Fruit.oranges    | 1.111111
            125    | Fruit.oranges | 23.4   | Fruit.grapefruit | 3.205128
        }
    
        def "can multiply amount by a unitless value"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    	//
    	//	_10       = 2*1
    	//	_11       = 1 + _10
    	//	_1100     = _11 << 2
    	//	_1111     = _11 + _1100
    	//	_11110000 = _1111 << 4
    	//	_11111111 = _1111 + _11110000
    	//	x16       = _11111111 << 8 + _11111111
    	//	x32       = x16 << 16 + x16
    	//	return      ((x32 << 32 + 1) << 96 + 1) << 94
    	//
    	p256Sqr(t0, x, 1)
    	p256Mul(t0, x, t0)
    	p256Sqr(t1, t0, 2)
    	p256Mul(t0, t0, t1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top