Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Distinguishes (0.28 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. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    // successors for each op, based on side effects on known and unknown resources.
    // Side-effecting ops on unknown resources are conservatively treated as
    // interfering with all known resource op accesses. It distinguishes accesses
    // based on whether they are read-only, and read-only ops do not interfere with
    // each other.
    //
    // If there are nested regions, each region is handled separately, and control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    	w.Bytes(w.tmpHash[:])
    }
    
    // contentHashSection returns a mnemonic for s's section.
    // The goal is to prevent content-addressability from moving symbols between sections.
    // contentHashSection only distinguishes between sets of sections for which this matters.
    // Allowing flexibility increases the effectiveness of content-addressability.
    // But in some cases, such as doing addressing based on a base symbol,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ------------------------------------------------------------
    
    My app build tasks
    ------------------
    tasksAll - Show additional tasks.
    ----
    
    [[sec:task_categories]]
    == Task categories
    
    Gradle distinguishes between two categories of tasks:
    
    1. *Lifecycle tasks*
    2. *Actionable tasks*
    
    **Lifecycle tasks** define targets you can call, such as `:build` your project.
    Lifecycle tasks do not provide Gradle with actions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    2. when `languageVersion` has been set, optionally followed by setting any other property.
    
    In other words, if a vendor or an implementation are specified, they must be accompanied by the language version.
    Gradle distinguishes between toolchain specifications that configure the language version and the ones that do not.
    A specification without a language version, in most cases, would be treated as a one that selects the toolchain of the current build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/testing/fuzz.go

    	// the package.
    	corpusDir = "testdata/fuzz"
    )
    
    // fuzzWorkerExitCode is used as an exit code by fuzz worker processes after an
    // internal error. This distinguishes internal errors from uncontrolled panics
    // and other failures. Keep in sync with internal/fuzz.workerExitCode.
    const fuzzWorkerExitCode = 70
    
    // InternalFuzzTarget is an internal type but exported because it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    func (st ServiceTarget) NamespacedName() types.NamespacedName {
    	return st.Service.NamespacedName()
    }
    
    type (
    	ServicePort = *Port
    	// ServiceInstancePort defines a port that has both a port and targetPort (which distinguishes it from model.Port)
    	// Note: ServiceInstancePort only makes sense in the context of a specific ServiceInstance, because TargetPort depends on a specific instance.
    	ServiceInstancePort struct {
    		ServicePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top