Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for Distinguishes (0.28 sec)

  1. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                    type: string
                  interfacePrefix:
                    description: 'InterfacePrefix is the interface name prefix that identifies
                      workload endpoints and so distinguishes them from host endpoint
                      interfaces. Note: in environments other than bare metal, the orchestrators
                      configure this appropriately. For example our Kubernetes and Docker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    		return "namespace"
    	}
    	if requestInfo, ok := request.RequestInfoFrom(ctx); ok {
    		if requestInfo.IsResourceRequest {
    			return "cluster"
    		}
    	}
    	return ""
    }
    
    // CanonicalVerb distinguishes LISTs from GETs (and HEADs). It assumes verb is
    // UPPERCASE.
    func CanonicalVerb(verb string, scope string) string {
    	switch verb {
    	case "GET", "HEAD":
    		if scope != "resource" && scope != "" {
    			return "LIST"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    The class extends `DefaultTask` and it has one `@Input`, which is of type `Property<String>`.
    It has one method that is annotated with `@TaskAction`, which prints out the version.
    
    Note that the task implementation clearly distinguishes between "Configuration code" and "Execution code".
    
    The configuration code is executed during Gradle's configuration phase.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  8. doc/asm.html

    in the range [−framesize, 0):
    <code>x-8(SP)</code>, <code>y-4(SP)</code>, and so on.
    </p>
    
    <p>
    On architectures with a hardware register named <code>SP</code>,
    the name prefix distinguishes
    references to the virtual stack pointer from references to the architectural
    <code>SP</code> register.
    That is, <code>x-8(SP)</code> and <code>-8(SP)</code>
    are different memory locations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// InlMark marks the start of an inlined function body. Its AuxInt field
    	// distinguishes which entry in the local inline tree it is marking.
    	{name: "InlMark", argLength: 1, aux: "Int32", typ: "Void"}, // arg[0]=mem, returns void.
    
    	// Ops for breaking 64-bit operations on 32-bit architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/internal/fuzz/worker.go

    	// responding to the coordinator before being stopped.
    	workerTimeoutDuration = 1 * time.Second
    
    	// workerExitCode is used as an exit code by fuzz worker processes after an internal error.
    	// This distinguishes internal errors from uncontrolled panics and other crashes.
    	// Keep in sync with internal/fuzz.workerExitCode.
    	workerExitCode = 70
    
    	// workerSharedMemSize is the maximum size of the shared memory file used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top