Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 117 for 100xi1 (0.12 sec)

  1. src/fmt/scan_test.go

    		{"space vs newline 0101", "1\n 2", "%d\n%d ", 2, true},
    		{"space vs newline 0110", "1\n 2", "%d \n%d", 2, true},
    		{"space vs newline 0111", "1\n 2", "%d \n %d", 2, true},
    		{"space vs newline 1000", "1 \n2", "%d\n%d", 2, true},
    		{"space vs newline 1001", "1 \n2", "%d\n %d", 2, true},
    		{"space vs newline 1010", "1 \n2", "%d \n%d", 2, true},
    		{"space vs newline 1011", "1 \n2", "%d \n %d", 2, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/bitmap_test.go

    			released: "10.0.0.5",
    			outOfRange: []string{
    				"10.0.0.0",      // reserved (base address)
    				"10.15.255.255", // reserved (broadcast address)
    				"10.255.255.2",  // not in range
    			},
    			alreadyAllocated: "10.0.0.1",
    		},
    		{
    			name:     "IPv6",
    			cidr:     "2001:db8:1::/48",
    			family:   api.IPv6Protocol,
    			free:     65535,
    			released: "2001:db8:1::5",
    			outOfRange: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - Azurefile: Normalize share name to not include capital letters ([#100731](https://github.com/kubernetes/kubernetes/pull/100731), [@kassarl](https://github.com/kassarl)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    								Port:  &networking.Port{Name: "tcp", Number: 8000, Protocol: "TCP"},
    								Hosts: []string{"*"},
    								Bind:  "10.0.0.1",
    							},
    						},
    					},
    				},
    				{
    					Meta: config.Meta{Name: "gateway2", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. src/math/big/arith_test.go

    	{},
    	{nat{0}, nat{0}, nat{0}, 0},
    	{nat{1}, nat{1}, nat{0}, 0},
    	{nat{0}, nat{_M}, nat{1}, 1},
    	{nat{80235}, nat{12345}, nat{67890}, 0},
    	{nat{_M - 1}, nat{_M}, nat{_M}, 1},
    	{nat{0, 0, 0, 0}, nat{_M, _M, _M, _M}, nat{1, 0, 0, 0}, 1},
    	{nat{0, 0, 0, _M}, nat{_M, _M, _M, _M - 1}, nat{1, 0, 0, 0}, 0},
    	{nat{0, 0, 0, 0}, nat{_M, 0, _M, 0}, nat{1, _M, 0, _M}, 1},
    }
    
    func testFunVV(t *testing.T, msg string, f funVV, a argVV) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    			Address: &core.Address{
    				Address: &core.Address_SocketAddress{
    					SocketAddress: &core.SocketAddress{
    						Address: ip,
    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 10001,
    						},
    					},
    				},
    			},
    		},
    	}
    }
    
    func buildWrappedLocalityLbEndpoints() []*WrappedLocalityLbEndpoints {
    	cluster := buildSmallClusterForFailOverPriority()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    // the regexp doesn't end with `$`, and the matched rule succeeds against the input data,
    // runChain will continue trying to match the rest of the rule. E.g., "ip daddr 10.0.0.1
    // drop" would first match destAddrRegexp, and then (assuming destIP was "10.0.0.1") would
    // match verdictRegexp.
    
    var destAddrRegexp = regexp.MustCompile(`^ip6* daddr (!= )?(\S+)`)
    var destAddrLookupRegexp = regexp.MustCompile(`^ip6* daddr (!= )?\{([^}]*)\}`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    		},
    		{
    			name:              "cloud provider is external and nodeIP specified",
    			nodeIP:            netutils.ParseIPSloppy("10.0.0.1"),
    			nodeAddresses:     []v1.NodeAddress{},
    			cloudProviderType: cloudProviderExternal,
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Generated OpenAPI now correctly specifies 201 as a possible response code for PATCH operations. ([#100141](https://github.com/kubernetes/kubernetes/pull/100141), [@brendandburns](https://github.com/brendandburns))
    - Graceful termination will now be honored when deleting a collection of pods. ([#100101](https://github.com/kubernetes/kubernetes/pull/100101), [@deads2k](https://github.com/deads2k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    					Template:             validPodTemplateSpecForGenerated,
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"spec.maxFailedIndexes: Invalid value: 100001: must be less than or equal to 100000": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_001),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top