Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for Tkey (0.59 sec)

  1. pkg/log/scope_test.go

    		},
    		{
    			func() { klog.Info("a", "b") },
    			"info\tklog\tab",
    		},
    		{
    			func() { klog.InfoS("msg", "key", 1) },
    			"info\tklog\tmsg\tkey=1",
    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info", "key", 1) },
    			"error\tklog\tmy error: info\tkey=1",
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.expected, func(t *testing.T) {
    			lines := runTest(t, tt.log)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

            .add("foo : bak") // Name trailing whitespace is trimmed.
            .add("\tkey\t:\tvalue\t") // '\t' also counts as whitespace
            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
        assertThat(headers.values("foo")).containsExactly("bar", "baz", "bak")
        assertThat(headers.values("key")).containsExactly("value")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

          builder.addHeader("", "Value")
        }
      }
    
      @Test
      fun headerAllowsTabOnlyInValues() {
        val builder = Request.Builder()
        builder.header("key", "sample\tvalue")
        assertFailsWith<IllegalArgumentException> {
          builder.header("sample\tkey", "value")
        }
      }
    
      @Test
      fun headerForbidsControlCharacters() {
        assertForbiddenHeader("\u0000")
        assertForbiddenHeader("\r")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    template <class Tkey, class Tvalue>
    bool EqualProtoMap(const ::tensorflow::protobuf::Map<Tkey, Tvalue>& a,
                       const ::tensorflow::protobuf::Map<Tkey, Tvalue>& b,
                       const std::function<string(const Tkey&)>& key_to_string,
                       const std::function<string(const Tvalue&)>& value_to_string,
                       const std::function<bool(const Tkey&, const Tvalue&,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/RequestTest.kt

          builder.addHeader("", "Value")
        }
      }
    
      @Test
      fun headerAllowsTabOnlyInValues() {
        val builder = Request.Builder()
        builder.header("key", "sample\tvalue")
        assertFailsWith<IllegalArgumentException> {
          builder.header("sample\tkey", "value")
        }
      }
    
      @Test
      fun headerForbidsControlCharacters() {
        assertForbiddenHeader("\u0000")
        assertForbiddenHeader("\r")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/store.go

    func (s *serviceInstancesStore) deleteInstanceKeys(key configKeyWithParent, instances []*model.ServiceInstance) {
    	for _, i := range instances {
    		ikey := makeInstanceKey(i)
    		s.instancesByHostAndPort.Delete(hostPort{ikey, i.ServicePort.Port})
    		oldInstances := s.instances[ikey][key]
    		delete(s.instances[ikey], key)
    		if len(s.instances[ikey]) == 0 {
    			delete(s.instances, ikey)
    		}
    		delete(s.ip2instance, i.Endpoint.Address)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/rsa.go

    		!bigToBn(&key.q, Q) ||
    		!bigToBn(&key.dmp1, Dp) ||
    		!bigToBn(&key.dmq1, Dq) ||
    		!bigToBn(&key.iqmp, Qinv) {
    		return nil, fail("BN_bin2bn")
    	}
    	k := &PrivateKeyRSA{_key: key}
    	runtime.SetFinalizer(k, (*PrivateKeyRSA).finalize)
    	return k, nil
    }
    
    func (k *PrivateKeyRSA) finalize() {
    	C._goboringcrypto_RSA_free(k._key)
    }
    
    func (k *PrivateKeyRSA) withKey(f func(*C.GO_RSA) C.int) C.int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection.go

    		h.objectDependencies[iKey] = ctx.d
    	}
    
    	// Now acquire the full lock. Note we still have recomputeMu held!
    	h.mu.Lock()
    	for idx, a := range items {
    		i := a.Latest()
    		iKey := GetKey(i)
    		if a.Event == controllers.EventDelete {
    			for oKey := range h.collectionState.mappings[iKey] {
    				oldRes, f := h.collectionState.outputs[oKey]
    				if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/testdata/localhost__127.0.0.1/test.com_star.test.com_/key

    Justin SB <******@****.***> 1546536079 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 03 17:21:31 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/testdata/test.com__/localhost__/key

    Justin SB <******@****.***> 1546536079 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 03 17:21:31 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top