Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for key_b (0.08 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    class ThreadLocal {
     public:
      ThreadLocal() : key_(CreateKey()),
                      default_() {}
      explicit ThreadLocal(const T& value) : key_(CreateKey()),
                                             default_(value) {}
    
      ~ThreadLocal() {
        // Destroys the managed object for the current thread, if any.
        DeleteThreadLocalValue(pthread_getspecific(key_));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    }
    
    // In general, we convert the following form of sort to tf.TopK:
    //
    // %result = "mhlo.sort" (%keys, %indices) ({
    //  ^bb0(%key_0, %key_1, %index_0, %index_1):
    //     %1 = "mhlo.compare"(%key_0, %key_1) {mhlo::ComparisonDirection::GT}
    //     -> tensor<i1>
    //  }),
    //
    // where the indices is obtained by an IotaOp (maybe folded).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^FS_IOC_.*(ENCRYPTION|VERITY|[GS]ETFLAGS)/ ||
    		$2 ~ /^FS_VERITY_/ ||
    		$2 ~ /^FSCRYPT_/ ||
    		$2 ~ /^DM_/ ||
    		$2 ~ /^GRND_/ ||
    		$2 ~ /^RND/ ||
    		$2 ~ /^KEY_(SPEC|REQKEY_DEFL)_/ ||
    		$2 ~ /^KEYCTL_/ ||
    		$2 ~ /^PERF_/ ||
    		$2 ~ /^SECCOMP_/ ||
    		$2 ~ /^SEEK_/ ||
    		$2 ~ /^SCHED_/ ||
    		$2 ~ /^SPLICE_/ ||
    		$2 ~ /^SYNC_FILE_RANGE_/ ||
    		$2 !~ /IOC_MAGIC/ &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1", "key2"},
    			}, {
    				Name:         "driverB",
    				NodeID:       "nodeA",
    				TopologyKeys: []string{"keyA", "keyB"},
    			}},
    		},
    	}, {
    		// multiple drivers with same node IDs, topology keys
    		ObjectMeta: metav1.ObjectMeta{Name: "foo7"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Always use this constructor (with parameters) to create a
      // TestProperty object.
      TestProperty(const std::string& a_key, const std::string& a_value) :
        key_(a_key), value_(a_value) {
      }
    
      // Gets the user supplied key.
      const char* key() const {
        return key_.c_str();
      }
    
      // Gets the user supplied value.
      const char* value() const {
        return value_.c_str();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    [[sec:task_output_caching_details]]
    == Cacheable tasks
    
    Since a task describes all of its inputs and outputs, Gradle can compute a _build cache key_ that uniquely defines the task's outputs based on its inputs.
    That build cache key is used to request previous outputs from a build cache or store new outputs in the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					XListType:    strPtr("map"),
    					XListMapKeys: []string{"keyA", "keyB"},
    					Items: &apiextensions.JSONSchemaPropsOrArray{
    						Schema: &apiextensions.JSONSchemaProps{
    							Type: "object",
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"keyA": {
    									Type: "string",
    								},
    								"keyB": {
    									Type: "integer",
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top