Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 265 for key0 (0.09 sec)

  1. src/crypto/tls/key_schedule.go

    	return c.expandLabel(trafficSecret, trafficUpdateLabel, nil, c.hash.Size())
    }
    
    // trafficKey generates traffic keys according to RFC 8446, Section 7.3.
    func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
    	key = c.expandLabel(trafficSecret, "key", nil, c.keyLen)
    	iv = c.expandLabel(trafficSecret, "iv", nil, aeadNonceLength)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/net/textproto/reader.go

    // The header is a sequence of possibly continued Key: Value lines
    // ending in a blank line.
    // The returned map m maps [CanonicalMIMEHeaderKey](key) to a
    // sequence of values in the same order encountered in the input.
    //
    // For example, consider this input:
    //
    //	My-Key: Value 1
    //	Long-Key: Even
    //	       Longer Value
    //	My-Key: Value 2
    //
    // Given that input, ReadMIMEHeader returns the map:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/test/mock/caserver.go

    }
    
    func NewCAServerWithKeyCert(port int, key, cert []byte, opts ...grpc.ServerOption) (*CAServer, error) {
    	keyCertBundle, err := util.NewVerifiedKeyCertBundleFromPem(cert, key, nil, cert)
    	if err != nil {
    		caServerLog.Errorf("failed to create CA KeyCertBundle: %+v", err)
    		return nil, err
    	}
    
    	server := &CAServer{
    		certPem:         cert,
    		keyPem:          key,
    		certLifetime:    24 * time.Hour,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                fqid == 'validation:property-validation:nested-map-unsupported-key-type'
                contextualLabel == "Type 'MyTask' property 'mapWithUnsupportedKey' where key of nested map is of type 'java.lang.Boolean'"
                details == 'Key of nested map must be one of the following types: \'Enum\', \'Integer\', \'String\''
                solutions == [ 'Change type of key to one of the following types: \'Enum\', \'Integer\', \'String\'' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainerFactory.java

                this.type = type;
                this.calculatedValueContainerFactory = calculatedValueContainerFactory;
            }
    
            @Override
            public V computeIfAbsent(K key, Function<K, V> factory) {
                CalculatedValue<V> value = cache.computeIfAbsent(key, k ->
                    calculatedValueContainerFactory.create(
                        Describables.of(k, type),
                        context -> factory.apply(k)
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    				return false
    			}
    			key = map_.key
    			return true
    		}) {
    			return
    		}
    
    		*x = *args[1] // key
    		check.assignment(x, key, "argument to delete")
    		if x.mode == invalid {
    			return
    		}
    
    		x.mode = novalue
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(nil, map_, key))
    		}
    
    	case _Imag, _Real:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    	}
    
    	extractMetadata(options.Envs, IstioMetaPrefix, func(m map[string]any, key string, val string) {
    		m[key] = val
    	}, untypedMeta)
    
    	extractMetadata(options.Envs, IstioMetaJSONPrefix, func(m map[string]any, key string, val string) {
    		err := json.Unmarshal([]byte(val), &m)
    		if err != nil {
    			log.Warnf("Env variable %s [%s] failed json unmarshal: %v", key, val, err)
    		}
    	}, untypedMeta)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/additional-responses.md

    ```Python
    old_dict = {
        "old key": "old value",
        "second old key": "second old value",
    }
    new_dict = {**old_dict, "new key": "new value"}
    ```
    
    Here, `new_dict` will contain all the key-value pairs from `old_dict` plus the new key-value pair:
    
    ```Python
    {
        "old key": "old value",
        "second old key": "second old value",
        "new key": "new value",
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val obtainedValue: ObtainedValue
        ) : ConfigurationCacheFingerprint()
    
        data class UndeclaredSystemProperty(
            val key: String,
            val value: Any?
        ) : ConfigurationCacheFingerprint()
    
        data class UndeclaredEnvironmentVariable(
            val key: String,
            val value: Any?
        ) : ConfigurationCacheFingerprint()
    
        data class RemoteScript(
            val uri: URI
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    func StartTestTLSServer(t TestErrHandler, instanceType string, cert, key []byte) TestServer {
    	// Fetch TLS key and pem files from test-data/ directory.
    	//	dir, _ := os.Getwd()
    	//	testDataDir := filepath.Join(filepath.Dir(dir), "test-data")
    	//
    	//	pemFile := filepath.Join(testDataDir, "server.pem")
    	//	keyFile := filepath.Join(testDataDir, "server.key")
    	cer, err := tls.X509KeyPair(cert, key)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top