Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for recipients (0.17 sec)

  1. src/net/textproto/reader_test.go

    		"550-5.1.1 double-checking the recipient's email address for typos or\n" +
    		"550-5.1.1 unnecessary spaces. Learn more at\n" +
    		"Unexpected but legal text!\n" +
    		"550 5.1.1 https://support.google.com/mail/answer/6596 h20si25154304pfd.166 - gsmtp\n")
    
    	wantMsg := "5.1.1 The email account that you tried to reach does not exist. Please try\n" +
    		"5.1.1 double-checking the recipient's email address for typos or\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/generated.proto

      optional TokenRequestStatus status = 3;
    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    message TokenRequestSpec {
      // Audiences are the intendend audiences of the token. A recipient of a
      // token must identify themself with an identifier in the list of
      // audiences of the token, and otherwise should reject the token. A
      // token issued for multiple audiences may be used to authenticate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/encoding/asn1/asn1.go

    }
    
    func (e *invalidUnmarshalError) Error() string {
    	if e.Type == nil {
    		return "asn1: Unmarshal recipient value is nil"
    	}
    
    	if e.Type.Kind() != reflect.Pointer {
    		return "asn1: Unmarshal recipient value is non-pointer " + e.Type.String()
    	}
    	return "asn1: Unmarshal recipient value is nil " + e.Type.String()
    }
    
    // UnmarshalWithParams allows field parameters to be specified for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/types.go

    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    type TokenRequestSpec struct {
    	// Audiences are the intendend audiences of the token. A recipient of a
    	// token must identify themself with an identifier in the list of
    	// audiences of the token, and otherwise should reject the token. A
    	// token issued for multiple audiences may be used to authenticate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    // mcache and puts the object onto a free list.
    //
    // In some cases there is no way to simply release
    // resources, such as statistics, so donate them to
    // a different mcache (the recipient).
    func freemcache(c *mcache) {
    	systemstack(func() {
    		c.releaseAll()
    		stackcache_clear(c)
    
    		// NOTE(rsc,rlh): If gcworkbuffree comes back, we need to coordinate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_builder.go

    	}
    
    	filterChains := buildOutboundCatchAllNetworkFilterChains(lb.node, lb.push)
    
    	actualWildcards, _ := getWildcardsAndLocalHost(lb.node.GetIPMode())
    	// add an extra listener that binds to the port that is the recipient of the iptables redirect
    	ipTablesListener := &listener.Listener{
    		Name:             model.VirtualOutboundListenerName,
    		Address:          util.BuildAddress(actualWildcards[0], uint32(lb.push.Mesh.ProxyListenPort)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    // Each value we send is preceded by its type definition: an encoded int.
    // However, the very first time we send the value, we first send the pair
    // (-id, wireType).
    // For bootstrapping purposes, we assume that the recipient knows how
    // to decode a wireType; it is exactly the wireType struct here, interpreted
    // using the gob rules for sending a structure, except that we assume the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	if fh.StreamID == 0 {
    		// DATA frames MUST be associated with a stream. If a
    		// DATA frame is received whose stream identifier
    		// field is 0x0, the recipient MUST respond with a
    		// connection error (Section 5.4.1) of type
    		// PROTOCOL_ERROR.
    		countError("frame_data_stream_0")
    		return nil, http2connError{http2ErrCodeProtocol, "DATA frame with stream ID 0"}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "audience": {
              "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

    // the pods runtime filesystem for use against APIs (Kubernetes API Server or
    // otherwise).
    message ServiceAccountTokenProjection {
      // audience is the intended audience of the token. A recipient of a token
      // must identify itself with an identifier specified in the audience of the
      // token, and otherwise should reject the token. The audience defaults to the
      // identifier of the apiserver.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top