Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for _1111 (0.17 sec)

  1. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeExternalDNS, Address: "hostname"},
    				{Type: v1.NodeInternalDNS, Address: "hostname"},
    				{Type: v1.NodeInternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    			},
    			wantDNSNames: []string{"hostname"},
    			wantIPs:      []net.IP{netutils.ParseIPSloppy("1.1.1.1")},
    		},
    		{
    			name: "order values",
    			addresses: []v1.NodeAddress{
    				{Type: v1.NodeHostName, Address: "hostname-2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    						Protocol: "HTTP",
    						Name:     "uds",
    					},
    					Bind:            "1.1.1.1",
    					DefaultEndpoint: "127.0.0.1:8083",
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   8084,
    						Protocol: "HTTP",
    						Name:     "uds",
    					},
    					Bind:            "1.1.1.1",
    					DefaultEndpoint: "127.0.0.1:8084",
    				},
    				{
    					// not conflict with service port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

        9000:
          mode: PERMISSIVE
    ---`
    	sePort8000 := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
     name: se
    spec:
     hosts:
     - foo.bar
     endpoints:
     - address: 1.1.1.1
     location: MESH_INTERNAL
     resolution: STATIC
     ports:
     - name: http
       number: 8000
       protocol: HTTP
    ---`
    	mkCall := func(port int, tls simulation.TLSMode) simulation.Call {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.Conv3D"(%arg0, %arg1) {padding = "SAME", strides = [2, 1, 1, 1, 1]} : (tensor<?x?x?x?x?xf32>, tensor<?x?x?x?x?xf32>) -> tensor<?x?x?x?x?xf32>
      func.return %0: tensor<?x?x?x?x?xf32>
      // CHECK-LABEL: conv3d_invalid_strides
      // CHECK:  [[BCT:%.*]] = "tf.Conv3D"(%arg0, %arg1) <{padding = "SAME", strides = [2, 1, 1, 1, 1]}> : (tensor<?x?x?x?x?xf32>, tensor<?x?x?x?x?xf32>) -> tensor<?x?x?x?x?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  5. build/dependencies.yaml

      - name: "coredns-kube-up"
        version: 1.11.1
        refPaths:
        - path: cluster/addons/dns/coredns/coredns.yaml.base
          match: registry.k8s.io/coredns
        - path: cluster/addons/dns/coredns/coredns.yaml.in
          match: registry.k8s.io/coredns
        - path: cluster/addons/dns/coredns/coredns.yaml.sed
          match: registry.k8s.io/coredns
    
      - name: "coredns-kubeadm"
        version: 1.11.1
        refPaths:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_builder_test.go

    	cg := NewConfigGenTest(t, o)
    	// Hack up some instances for each Service
    	for _, s := range o.Services {
    		i := &model.ServiceInstance{
    			Service: s,
    			Endpoint: &model.IstioEndpoint{
    				Address:      "1.1.1.1",
    				EndpointPort: 8080, // service port is 80, target port is 8080
    			},
    			ServicePort: s.Ports[0],
    		}
    		cg.MemRegistry.AddInstance(i)
    	}
    	l := cg.Listeners(cg.SetupProxy(p))
    	xdstest.ValidateListeners(t, l)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    					Addresses: []api.NodeAddress{{Type: api.NodeExternalIP, Address: "1.1.1.1"}},
    				},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion, NodeInternalIP, NodeExternalIP, OSImage, KernelVersion, ContainerRuntimeVersion
    			expected: []metav1.TableRow{
    				{
    					Cells: []interface{}{"foo1", "Unknown", "<none>", "<unknown>", "", "<none>", "1.1.1.1", "fake-os-image", "<unknown>", "<unknown>"},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// the padding. Sections 6.1 and 6.2 of [1] separate the outputs of the
    	// SHA-3 and SHAKE functions by appending bitstrings to the message.
    	// Using a little-endian bit-ordering convention, these are "01" for SHA-3
    	// and "1111" for SHAKE, or 00000010b and 00001111b, respectively. Then the
    	// padding rule from section 5.1 is applied to pad the message to a multiple
    	// of the rate, which involves adding a "1" bit, zero or more "0" bits, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    func TestListImagesPinnedField(t *testing.T) {
    	ctx := context.Background()
    	_, fakeImageService, fakeManager, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    	imagesPinned := map[string]bool{
    		"1111": false,
    		"2222": true,
    		"3333": false,
    	}
    	imageList := []string{}
    	for image, pinned := range imagesPinned {
    		fakeImageService.SetFakeImagePinned(image, pinned)
    		imageList = append(imageList, image)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/accesslog_test.go

    	}
    }
    
    func newTestEnviroment() *model.Environment {
    	serviceDiscovery := memregistry.NewServiceDiscovery(&model.Service{
    		Hostname:       "test.example.org",
    		DefaultAddress: "1.1.1.1",
    		Ports: model.PortList{
    			&model.Port{
    				Name:     "default",
    				Port:     8080,
    				Protocol: protocol.HTTP,
    			},
    		},
    	})
    
    	meshConfig := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top