Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 180 for valid (0.26 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        owner_ = pthread_self();
        has_owner_ = true;
      }
    
      // Releases this mutex.
      void Unlock() {
        // Since the lock is being released the owner_ field should no longer be
        // considered valid. We don't protect writing to has_owner_ here, as it's
        // the caller's responsibility to ensure that the current thread holds the
        // mutex when this is called.
        has_owner_ = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_test.cc

      TFE_OpSetAttrIntList(op, "strides", values.data(), values.size());
    
      const int BUFFER_SIZE = 10;
      char buffer[BUFFER_SIZE];
      std::strncpy(buffer, "VALID", BUFFER_SIZE);
      TFE_OpSetAttrString(op, "padding", buffer, std::strlen(buffer));
      // Overwriting value in "buffer", should be fine since TFE_Op
      // shouldn't be holding on to it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/test-utils_test.go

    	expiresStr := req.Header.Get("Expires")
    	if expiresStr == "" {
    		expiresStr = strconv.FormatInt(epochExpires, 10)
    		req.Header.Set("Expires", expiresStr)
    	}
    
    	// url.RawPath will be valid if path has any encoded characters, if not it will
    	// be empty - in which case we need to consider url.Path (bug in net/http?)
    	encodedResource := req.URL.RawPath
    	encodedQuery := req.URL.RawQuery
    	if encodedResource == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        owner_ = pthread_self();
        has_owner_ = true;
      }
    
      // Releases this mutex.
      void Unlock() {
        // Since the lock is being released the owner_ field should no longer be
        // considered valid. We don't protect writing to has_owner_ here, as it's
        // the caller's responsibility to ensure that the current thread holds the
        // mutex when this is called.
        has_owner_ = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/reflect/type.go

     * A few are known to ../runtime/type.go to convey to debuggers.
     * They are also known to ../runtime/type.go.
     */
    
    // A Kind represents the specific kind of type that a [Type] represents.
    // The zero Kind is not a valid kind.
    type Kind uint
    
    const (
    	Invalid Kind = iota
    	Bool
    	Int
    	Int8
    	Int16
    	Int32
    	Int64
    	Uint
    	Uint8
    	Uint16
    	Uint32
    	Uint64
    	Uintptr
    	Float32
    	Float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top