Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 111111112 (0.09 sec)

  1. 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)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            null       | null        | null            | "9"        | "11"          | "9"                  | "9"                  | "9"
            null       | null        | null            | null       | "11"          | "11"                 | "11"                 | "11"
            null       | null        | null            | null       | null          | currentJavaVersion() | currentJavaVersion() | currentJavaVersion()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		},
    		{
    			name: "external service with selector and endpoints",
    			instances: []*model.ServiceInstance{
    				buildServiceInstance(extSvcSelector, "10.10.10.10"),
    				buildServiceInstance(extSvcSelector, "11.11.11.11"),
    			},
    			services:                  []*model.Service{extSvcSelector},
    			numListenersOnServicePort: 2,
    		},
    		{
    			name:                      "no listeners for empty Kubernetes auto protocol",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. src/math/big/int_test.go

    	z, x, y *Int
    }
    
    var sumZZ = []argZZ{
    	{NewInt(0), NewInt(0), NewInt(0)},
    	{NewInt(1), NewInt(1), NewInt(0)},
    	{NewInt(1111111110), NewInt(123456789), NewInt(987654321)},
    	{NewInt(-1), NewInt(-1), NewInt(0)},
    	{NewInt(864197532), NewInt(-123456789), NewInt(987654321)},
    	{NewInt(-1111111110), NewInt(-123456789), NewInt(-987654321)},
    }
    
    var prodZZ = []argZZ{
    	{NewInt(0), NewInt(0), NewInt(0)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    	UpdateNodeAllocatable // 100
    	UpdateNodeLabel       // 1000
    	UpdateNodeTaint       // 10000
    	UpdateNodeCondition   // 100000
    	UpdateNodeAnnotation  // 1000000
    
    	All ActionType = 1<<iota - 1 // 1111111
    
    	// Use the general Update type if you don't either know or care the specific sub-Update type to use.
    	Update = UpdateNodeAllocatable | UpdateNodeLabel | UpdateNodeTaint | UpdateNodeCondition | UpdateNodeAnnotation
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. src/encoding/gob/encoder_test.go

    }
    
    // Don't crash, just give error when allocating a huge slice.
    // Issue 8084.
    func TestErrorForHugeSlice(t *testing.T) {
    	// Encode an int slice.
    	buf := new(bytes.Buffer)
    	slice := []int{1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
    	err := NewEncoder(buf).Encode(slice)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    	// Reach into the buffer and smash the count to make the encoded slice very long.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    		{
    			Address:      netutils.ParseIPSloppy("10.10.10.10"),
    			Port:         56,
    			ActiveConn:   0,
    			InactiveConn: 0,
    		},
    		{
    			Address:      netutils.ParseIPSloppy("11.11.11.11"),
    			Port:         56,
    			ActiveConn:   0,
    			InactiveConn: 0,
    		},
    	}
    	for _, rs := range rss {
    		fp.ipvs.AddRealServer(vs, rs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    			{Name: "1234", Image: "foo"},
    		},
    	})
    	pod.Annotations[kubetypes.ConfigSourceAnnotationKey] = "file"
    
    	// Mirror pod has an outdated spec.
    	mirrorPod := podWithUIDNameNsSpec("11111111", "foo", "ns", v1.PodSpec{
    		Containers: []v1.Container{
    			{Name: "1234", Image: "bar"},
    		},
    	})
    	mirrorPod.Annotations[kubetypes.ConfigSourceAnnotationKey] = "api"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.Conv2DBackpropInput"(%arg0, %arg1, %arg2) {strides = [1, 2, 2, 1], explicit_paddings = [1, 1, 1, 1, 1, 1, 1, 1], padding="EXPLICIT", dilations=[1, 1, 1, 1]}: (tensor<4xi32>, tensor<3x3x1x32xf32>, tensor<15x14x14x32xf32>) -> tensor<15x28x28x1xf32>
      func.return %0 : tensor<15x28x28x1xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			Ingress: []*networking.IstioIngressListener{
    				{
    					Port: &networking.SidecarPort{
    						Protocol: "http",
    						Number:   90,
    						Name:     "foo",
    					},
    					DefaultEndpoint: "[1:1:1:1:1:1:1:1]:90",
    				},
    			},
    		}, false, false},
    		{"ingress with invalid default endpoint uds", &networking.Sidecar{
    			Ingress: []*networking.IstioIngressListener{
    				{
    					Port: &networking.SidecarPort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top