Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Distinguishes (0.2 sec)

  1. src/cmd/compile/internal/noder/codes.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package noder
    
    import "internal/pkgbits"
    
    // A codeStmt distinguishes among statement encodings.
    type codeStmt int
    
    func (c codeStmt) Marker() pkgbits.SyncMarker { return pkgbits.SyncStmt1 }
    func (c codeStmt) Value() int                 { return int(c) }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. security/pkg/util/jwtutil.go

    	// It is empty for the default K8S tokens.
    	Aud []string `json:"aud"`
    }
    
    // ExtractJwtAud extracts the audiences from a JWT token. If aud cannot be parse, the bool will be set
    // to false. This distinguishes aud=[] from not parsed.
    func ExtractJwtAud(jwt string) ([]string, bool) {
    	jwtSplit := strings.Split(jwt, ".")
    	if len(jwtSplit) != 3 {
    		return nil, false
    	}
    	payload := jwtSplit[1]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

    import javax.annotation.Nullable;
    import java.beans.Introspector;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.lang.reflect.Type;
    import java.util.Collection;
    
    /**
     * Distinguishes "get" getters, "is" getters and setters from non-property methods.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/encoding/csv/writer.go

    // fields which start with a space must be enclosed in quotes.
    // We used to quote empty strings, but we do not anymore (as of Go 1.4).
    // The two representations should be equivalent, but Postgres distinguishes
    // quoted vs non-quoted empty string during database imports, and it has
    // an option to force the quoted behavior for non-quoted CSV but it has
    // no option to force the non-quoted behavior for quoted CSV, making
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. src/net/http/transport_dial_test.go

    	dialCount      int
    }
    
    // A transportDialTesterRoundTrip is a RoundTrip made as part of a dial test.
    type transportDialTesterRoundTrip struct {
    	t *testing.T
    
    	roundTripID int                // distinguishes RoundTrips in logs
    	cancel      context.CancelFunc // cancels the Request context
    	reqBody     io.WriteCloser     // write half of the Request.Body
    	finished    bool
    
    	done chan struct{} // closed when RoundTrip returns:w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. pkg/controller/job/metrics/metrics.go

    			Subsystem: JobControllerSubsystem,
    			Name:      "job_pods_creation_total",
    			Help: `The number of Pods created by the Job controller labelled with a reason for the Pod creation.
    This metric also distinguishes between Pods created using different PodReplacementPolicy settings.
    Possible values of the "reason" label are:
    "new", "recreate_terminating_or_failed", "recreate_failed".
    Possible values of the "status" label are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/net/http/header.go

    		nv += len(vv)
    	}
    	sv := make([]string, nv) // shared backing array for headers' values
    	h2 := make(Header, len(h))
    	for k, vv := range h {
    		if vv == nil {
    			// Preserve nil values. ReverseProxy distinguishes
    			// between nil and zero-length header values.
    			h2[k] = nil
    			continue
    		}
    		n := copy(sv, vv)
    		h2[k] = sv[:n:n]
    		sv = sv[n:]
    	}
    	return h2
    }
    
    var timeFormats = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/html/template/context.go

    		c.delim == d.delim &&
    		c.urlPart == d.urlPart &&
    		c.jsCtx == d.jsCtx &&
    		c.attr == d.attr &&
    		c.element == d.element &&
    		c.err == d.err
    }
    
    // mangle produces an identifier that includes a suffix that distinguishes it
    // from template names mangled with different contexts.
    func (c context) mangle(templateName string) string {
    	// The mangled name for the default context is the input templateName.
    	if c.state == stateText {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. doc/next/4-runtime.md

    The traceback printed by the runtime after an unhandled panic or other
    fatal error now indents the second and subsequent lines of the error
    message (for example, the argument to panic) by a single tab, so that
    it can be unambiguously distinguished from the stack trace of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 359 bytes
    - Viewed (0)
  10. src/crypto/x509/pkix/pkix.go

    	// Names contains all parsed attributes. When parsing distinguished names,
    	// this can be used to extract non-standard attributes that are not parsed
    	// by this package. When marshaling to RDNSequences, the Names field is
    	// ignored, see ExtraNames.
    	Names []AttributeTypeAndValue
    
    	// ExtraNames contains attributes to be copied, raw, into any marshaled
    	// distinguished names. Values override any attributes with the same OID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top