Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 188 for valid (0.2 sec)

  1. plugin/pkg/admission/noderestriction/admission_test.go

    	v1Pod.Spec.NodeName = node
    	if mirror {
    		corePod.Annotations = map[string]string{api.MirrorPodAnnotationKey: "true"}
    		v1Pod.Annotations = map[string]string{api.MirrorPodAnnotationKey: "true"}
    
    		// Insert a valid owner reference by default.
    		controller := true
    		owner := metav1.OwnerReference{
    			APIVersion: "v1",
    			Kind:       "Node",
    			Name:       node,
    			UID:        types.UID(node + "-uid"),
    			Controller: &controller,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    	gcState     gcState
    	initialGen  uint64
    	queue       queue[Event]
    }
    
    // Advance checks if it's valid to proceed with ev which came from thread m.
    //
    // It assumes the gen value passed to it is monotonically increasing across calls.
    //
    // If any error is returned, then the trace is broken and trace parsing must cease.
    // If it's not valid to advance with ev, but no error was encountered, the caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    	// Instead, it is called when non-nil because any valid implementation
    	// of this function basically requires closing over this scavenger
    	// state, and allocating a closure is not allowed in the runtime as
    	// a matter of policy.
    	sleepStub func(n int64) int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/encoding/json/decode_test.go

    	},
    	{
    		CaseName: Name(""),
    		in:       `{"I": 0, "I": null, "J": null}`,
    		ptr:      new(DoublePtr),
    		out:      DoublePtr{I: nil, J: nil},
    	},
    
    	// invalid UTF-8 is coerced to valid UTF-8.
    	{
    		CaseName: Name(""),
    		in:       "\"hello\xffworld\"",
    		ptr:      new(string),
    		out:      "hello\ufffdworld",
    	},
    	{
    		CaseName: Name(""),
    		in:       "\"hello\xc2\xc2world\"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// arg1 = address of the last 16-byte unit to zero
    		// arg2 = mem
    		// returns mem
    		//	STP.P	(ZR,ZR), 16(R16)
    		//	CMP	Rarg1, R16
    		//	BLE	-2(PC)
    		// Note: the-end-of-the-memory may be not a valid pointer. it's a problem if it is spilled.
    		// the-end-of-the-memory - 16 is with the area to zero, ok to spill.
    		{
    			name:      "LoweredZero",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    It's very common to find artifacts which are signed with an expired key.
    This is not a problem for _verification_: key expiry is mostly used to avoid signing with a stolen key.
    If an artifact was signed before expiry, it's still valid.
    --
    
    === Enabling signature verification
    
    Because verifying signatures is more expensive (both I/O and CPU wise) and harder to check manually, it's not enabled by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    					types.UID("uid-0"),
    				},
    			},
    			allowed:     false,
    			allowedEver: true,
    		},
    		{
    			desc: "static pod if the static pod is the first valid pod waiting to start / clean up until picking the first valid pod",
    			pod:  newStaticPod("uid-0", "foo"),
    			podSyncStatuses: map[types.UID]*podSyncStatus{
    				"uid-0": {
    					fullname: "foo_",
    				},
    				"uid-1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// idiomatic map access
    				"!('a' in self.val)": 4,
    				"'b' in self.val":    3,
    				"!('c' in self.val)": 4,
    				"'d' in self.val":    3,
    				// field selection also possible if map key is a valid CEL identifier
    				"!has(self.val.a)":                               3,
    				"has(self.val.b)":                                2,
    				"!has(self.val.c)":                               3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      %2 = "tfl.conv_2d"(%arg0, %0, %1) {tac.device = "GPU", tac.inference_type = "FLOAT", dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 1 : i32, stride_w = 1 : i32} : (tensor<256x32x32x3xf32>, tensor<16x3x3x3xf32>, tensor<16xf32>) -> tensor<256x30x30x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        }
    
        // Test valid cases.
    
        // Exactly 120.
        key = (
          "0123456789012345678901234567890123456789012345678901234567890123456789" +
            "01234567890123456789012345678901234567890123456789"
        )
        cache.edit(key)!!.abort()
        // Contains all valid characters.
        key = "abcdefghijklmnopqrstuvwxyz_0123456789"
        cache.edit(key)!!.abort()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top