Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,398 for keyA (0.04 sec)

  1. tests/testdata/certs/mountedcerts-server/key.pem

    Jacek Ewertowski <******@****.***> 1666353045 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 11:50:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/invalid-utf8-secret-key.asc

    -----BEGIN PGP PRIVATE KEY BLOCK-----
    
    lQIGBGFWykABBAC5Ub/qYQwlbKRM7DZkZSX2kHlqKmZbR19lqAizbD74BxH7wi9N
    2S12JcCDuuJ4il6oUOP2NGaWNyXJBiDsAfwivVpX+t48mEd5W4HHUVK/Qg6WsEQN
    AHwetRhkr4d2E/FFiuBAaPqBT1TCqvHhkyHem2xCw1kQZ3cVUGY09S+WzwARAQAB
    /gcDAqcenWy80U6X9g7ylfrcgrKIZa7PHO/56EUcplO5w9lVAuLQLTRW8N6CqusC
    Ys//13zifu5V2zijr3K5fAFKRIRWMIC6mSTUXOq/T5SOlpiGQ/h0LqwSzO2tMz1k
    ARuITw7UzU5Dnoj3hlN3GijauL5y9KS7UEnoBW2PL+1974w0pPuVDerROtPqyfQd
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_cache_test.cc

      TF_ASSERT_OK_AND_ASSIGN(auto key, BuildSampleSignature("foo"));
      auto cache_value = cache->Lookup(key);
    
      EXPECT_FALSE(cache_value.has_value());
    }
    
    TEST(DeviceCompilationCacheTest, LookupOrCreateEntryDoesntExist) {
      auto cache = std::make_unique<Cache>();
    
      TF_ASSERT_OK_AND_ASSIGN(auto key, BuildSampleSignature("foo"));
      Cache::Value cache_value = cache->LookupOrCreate(key);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. pkg/volume/downwardapi/downwardapi_test.go

    	if runtime.GOOS == "windows" {
    		t.Skip("Skipping test that fails on Windows")
    	}
    
    	labels1 := map[string]string{
    		"key1": "value1",
    		"key2": "value2",
    	}
    	labels2 := map[string]string{
    		"key1": "value1",
    		"key2": "value2",
    		"key3": "value3",
    	}
    	annotations := map[string]string{
    		"a1":        "value1",
    		"a2":        "value2",
    		"multiline": "c\nb\na",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/features/features.go

    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    // NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a
    // map[string]bool of known keys or returns an error.
    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    	for _, s := range strings.Split(value, ",") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	}
    
    	// Initial LIST comes from the moment of RV=10.
    	store.Replace(nil, "10")
    
    	addEvent("key1", 20, now)
    
    	// Force "key1" to rotate our of cache.
    	later := now.Add(2 * eventFreshDuration)
    	addEvent("key2", 30, later)
    	addEvent("key3", 40, later)
    
    	// Force cache resize.
    	addEvent("key4", 50, later.Add(time.Second))
    
    	_, err := store.getAllEventsSince(15, storage.ListOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. src/text/template/doc.go

    	    $x.Field1.Field2
    	- The name of a key of the data, which must be a map, preceded
    	  by a period, such as
    		.Key
    	  The result is the map element value indexed by the key.
    	  Key invocations may be chained and combined with fields to any
    	  depth:
    	    .Field1.Key1.Field2.Key2
    	  Although the key must be an alphanumeric identifier, unlike with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/internal/profile/encode.go

    		numLabels := make(map[string][]int64)
    		for _, l := range s.labelX {
    			var key, value string
    			key, err = getString(p.stringTable, &l.keyX, err)
    			if l.strX != 0 {
    				value, err = getString(p.stringTable, &l.strX, err)
    				labels[key] = append(labels[key], value)
    			} else {
    				numLabels[key] = append(numLabels[key], l.numX)
    			}
    		}
    		if len(labels) > 0 {
    			s.Label = labels
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/gateway/certificate.go

    func selectorSubset(selectorX, selectorY map[string]string) bool {
    	var count int
    
    	for keyX, valueX := range selectorX {
    		for keyY, valueY := range selectorY {
    			if keyX == keyY {
    				// if have same key but different value
    				// mean selectorX is not subset of selectorY
    				if valueX != valueY {
    					return false
    				}
    				// if key and value is same
    				// increase the counting
    				count++
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Joiner.java

       *
       * <ul>
       *   <li>To output a separate entry for each key-value pair, pass {@code multimap.entries()} to a
       *       {@code MapJoiner} method that accepts entries as input, and receive output of the form
       *       {@code key1=A&key1=B&key2=C}.
       *   <li>To output a single entry for each key, pass {@code multimap.asMap()} to a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top