Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 101 for Distinguishes (0.17 sec)

  1. architecture/networking/pilot.md

    Note that clients can actually send three types of messages - requests, ACKs of previous pushes, and NACKs of previous pushes. Unfortunately, these are not clearly distinguished in the API, so there is some logic to split these out (`shouldRespond`).
    
    #### Pushes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/modfile.go

    	// should generally be ignored by callers since they happen frequently when
    	// we're offline. These errors are not equivalent to ErrDisallowed, so they
    	// may be distinguished from retraction errors.
    	//
    	// We load the raw file here: the go.mod file may have a different module
    	// path that we expect if the module or its repository was renamed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

          },
          "io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod": {
            "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
            "properties": {
              "type": {
                "default": "",
                "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

          },
          "io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod": {
            "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
            "properties": {
              "type": {
                "default": "",
                "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1.go

    package asn1
    
    // ASN.1 is a syntax for specifying abstract objects and BER, DER, PER, XER etc
    // are different encoding formats for those objects. Here, we'll be dealing
    // with DER, the Distinguished Encoding Rules. DER is used in X.509 because
    // it's fast to parse and, unlike BER, has a unique encoding for every object.
    // When calculating hashes over objects, it's important that the resulting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/match.go

    		m.supported = append(m.supported, &pair)
    	}
    	m.default_ = m.header(supported[0].lang()).haveTags[0]
    	// Keep these in two different loops to support the case that two equivalent
    	// languages are distinguished, such as iw and he.
    	for i, tag := range supported {
    		tt := tag.tag()
    		pair, max := makeHaveTag(tt, i)
    		if max != tt.LangID {
    			m.header(max).addIfNew(pair, true)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	//
    	// funcdata [nfuncdata]uint32
    }
    
    // Pseudo-Func that is returned for PCs that occur in inlined code.
    // A *Func can be either a *_func or a *funcinl, and they are distinguished
    // by the first uintptr.
    //
    // TODO(austin): Can we merge this with inlinedCall?
    type funcinl struct {
    	ones      uint32  // set to ^0 to distinguish from _func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    // already exists at package scope and is available at sym.Def.(*ir.Name).Type().
    // Local types (which may have the same name as a package-level type) are
    // distinguished by their vargen, which is embedded in their symbol name.
    type Type struct {
    	// extra contains extra etype-specific fields.
    	// As an optimization, those etype-specific structs which contain exactly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    // CertificateRequest message, which is used to demand a certificate and proof
    // of control from a client.
    type CertificateRequestInfo struct {
    	// AcceptableCAs contains zero or more, DER-encoded, X.501
    	// Distinguished Names. These are the names of root or intermediate CAs
    	// that the server wishes the returned certificate to be signed by. An
    	// empty slice indicates that the server has no preference.
    	AcceptableCAs [][]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    // Concurrent marking happens through four different mechanisms. One
    // is mutator assists, which happen in response to allocations and are
    // not scheduled. The other three are variations in the per-P mark
    // workers and are distinguished by gcMarkWorkerMode.
    type gcMarkWorkerMode int
    
    const (
    	// gcMarkWorkerNotWorker indicates that the next scheduled G is not
    	// starting work and the mode should be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top