Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for 1011 (0.06 sec)

  1. src/net/resolverdialfunc_test.go

    	return func(ctx context.Context, network, address string) (Conn, error) {
    		a := &resolverFuncConn{
    			h:       h,
    			network: network,
    			address: address,
    			ttl:     10, // 10 second default if unset
    		}
    		if h.StartDial != nil {
    			if err := h.StartDial(network, address); err != nil {
    				return nil, err
    			}
    		}
    		return a, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    	return stringEncoder(s)
    }
    
    func appendTwoDigits(dst []byte, v int) []byte {
    	return append(dst, byte('0'+(v/10)%10), byte('0'+v%10))
    }
    
    func appendFourDigits(dst []byte, v int) []byte {
    	return append(dst,
    		byte('0'+(v/1000)%10),
    		byte('0'+(v/100)%10),
    		byte('0'+(v/10)%10),
    		byte('0'+v%10))
    }
    
    func outsideUTCRange(t time.Time) bool {
    	year := t.Year()
    	return year < 1950 || year >= 2050
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    			options: &EndpointSliceControllerOptions{
    				&endpointsliceconfig.EndpointSliceControllerConfiguration{
    					ConcurrentServiceEndpointSyncs: 10,
    					MaxEndpointsPerSlice:           1001,
    				},
    			},
    		},
    		{
    			name:                   "EndpointSliceMirroringControllerOptions MirroringConcurrentServiceEndpointSyncs lower than mirroringMinConcurrentServiceEndpointSyncs (1)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/output.json

                         },
                         {
                            "id": "custom.lineStyle",
                            "value": {
                               "dash": [
                                  10,
                                  10
                               ],
                               "fill": "dash"
                            }
                         }
                      ]
                   }
                ]
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["0", "1"]  | ["0"]         | _             | "append missing to non-empty value, then add"     | { it.append(notDefined()) ; it.add("1") }
            ["1"]       | _             | ["0"]         | "add missing to non-empty convention, then append"| { it.add(notDefined()) ; it.append("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %1 = mhlo.constant dense<0.000000e+00> : tensor<f32>
      %2 = "mhlo.pad"(%arg0, %1) {edge_padding_high = dense<[0, 0, 1, 1]> : tensor<4xi64>, edge_padding_low = dense<[0, 0, 1, 1]> : tensor<4xi64>, interior_padding = dense<0> : tensor<4xi64>} : (tensor<1x3x6x6xf32>, tensor<f32>) -> tensor<1x3x8x8xf32>
      %3 = "mhlo.reduce_window"(%2, %1) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent_test.go

    	cases := []struct {
    		in  *Proxy
    		out string
    	}{
    		{
    			in: &Proxy{
    				Type:        model.SidecarProxy,
    				IPAddresses: []string{"10.1.1.0"},
    				ID:          "v0.default",
    				DNSDomain:   "default.svc.cluster.local",
    			},
    			out: "sidecar~10.1.1.0~v0.default~default.svc.cluster.local",
    		},
    		{
    			in: &Proxy{
    				Type:        model.Router,
    				ID:          "random",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			},
    		}
    	}
    
    	if err := cacher.watchCache.Add(makePod(1000)); err != nil {
    		t.Errorf("error: %v", err)
    	}
    	// Advance RV by 10.
    	startVersion := uint64(1010)
    
    	watcher, err := cacher.Watch(context.TODO(), "pods/ns/foo", storage.ListOptions{ResourceVersion: strconv.FormatUint(startVersion, 10), Predicate: storage.Everything})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. pkg/volume/util/util_test.go

    						},
    					},
    					EphemeralContainers: []v1.EphemeralContainer{
    						{
    							EphemeralContainerCommon: v1.EphemeralContainerCommon{
    								SecurityContext: &v1.SecurityContext{
    									RunAsUser: ptr.To[int64](1001),
    								},
    							},
    						},
    					},
    				},
    			},
    			wantFsUser: nil,
    		},
    		{
    			desc: "init and regular containers have runAsUser specified and the same",
    			pod: &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				"timestamp('1000-00-00T00:00:00Z')":  "compilation failed: ERROR: <input>:1:11: invalid timestamp",
    				"timestamp('1000-01-01T00:00:00ZZ')": "compilation failed: ERROR: <input>:1:11: invalid timestamp",
    				"timestamp(-62135596801)":            "compilation failed: ERROR: <input>:1:11: invalid timestamp",
    			},
    		},
    		{name: "enums",
    			obj: map[string]interface{}{"enumStr": "Pending"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)