Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Distinguishes (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/universe.go

    	// representation of interface aliases during type checking, and is
    	// implemented via hijacking [Scope.Lookup] for the [Universe] scope.
    	//
    	// Both representations use the same distinguished pointer for their RHS
    	// interface type, allowing us to detect any (even with the legacy
    	// representation), and format it as "any" rather than interface{}, which
    	// clarifies user-facing error messages significantly.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/go/types/universe.go

    	// representation of interface aliases during type checking, and is
    	// implemented via hijacking [Scope.Lookup] for the [Universe] scope.
    	//
    	// Both representations use the same distinguished pointer for their RHS
    	// interface type, allowing us to detect any (even with the legacy
    	// representation), and format it as "any" rather than interface{}, which
    	// clarifies user-facing error messages significantly.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top