Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 316 for highest (0.26 sec)

  1. src/strings/strings.go

    // given ASCII character in the set. The 128-bits of the lower 16 bytes,
    // starting with the least-significant bit of the lowest word to the
    // most-significant bit of the highest word, map to the full range of all
    // 128 ASCII characters. The 128-bits of the upper 16 bytes will be zeroed,
    // ensuring that any non-ASCII character will be reported as not in the set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The best matching variant is the variant that targets the highest Gradle API version and does not exceed the current build's Gradle version.
    
    In all other cases, a plugin variant that does not specify the supported Gradle API version is preferred if such a variant is present.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"priorityClassName":             "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *  - We use `AllCandidatesResolver(shorteningContext.analysisSession.useSiteSession).getAllCandidates( .. fake FIR .. )`. See
         *  [resolveUnqualifiedAccess] above.
         *  2. Check whether the candidate with the highest priority based on the distance to the scope from [expressionInScope] is the same
         *  as [calledSymbol] ot not
         *  - We use [hasScopeCloserThan] to determine the distance to the scope
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      repeated HostAlias hostAliases = 23;
    
      // If specified, indicates the pod's priority. "system-node-critical" and
      // "system-cluster-critical" are two special keywords which indicate the
      // highest priorities with the former being the highest priority. Any other
      // name must be defined by creating a PriorityClass object with that name.
      // If not specified, the pod priority will be default or zero if there is no
      // default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// +optional
    	HostAliases []HostAlias
    	// If specified, indicates the pod's priority. "system-node-critical" and
    	// "system-cluster-critical" are two special keywords which indicate the
    	// highest priorities with the former being the highest priority. Any other
    	// name must be defined by creating a PriorityClass object with that name.
    	// If not specified, the pod priority will be default or zero if there is no
    	// default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    		if shouldTrack(n) && n.Addrtaken() && n.Esc() != ir.EscHeap {
    			vars = append(vars, n)
    		}
    	}
    	if len(vars) == 0 {
    		return nil
    	}
    
    	// Sort variables from lowest to highest address.
    	sort.Slice(vars, func(i, j int) bool { return vars[i].FrameOffset() < vars[j].FrameOffset() })
    
    	// Populate the stack object data.
    	// Format must match runtime/stack.go:stackObjectRecord.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// If specified, indicates the pod's priority. "system-node-critical" and
    	// "system-cluster-critical" are two special keywords which indicate the
    	// highest priorities with the former being the highest priority. Any other
    	// name must be defined by creating a PriorityClass object with that name.
    	// If not specified, the pod priority will be default or zero if there is no
    	// default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    //     to contain every module that provides any package imported (or merely
    //     required) by any other module.
    //  2. Each root appears only once, at the selected version of its path
    //     (if rs.graph is non-nil) or at the highest version otherwise present as a
    //     root (otherwise).
    //  3. Every module path that appears as a root in rs remains a root.
    //  4. Every version in add is selected at its given version unless upgraded by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    	// This should be at least as large as the largest skip value
    	// used for profiling; otherwise stacks may be truncated inconsistently
    	maxSkip = 5
    
    	// maxProfStackDepth is the highest valid value for debug.profstackdepth.
    	// It's used for the bucket.stk func.
    	// TODO(fg): can we get rid of this?
    	maxProfStackDepth = 1024
    )
    
    type bucketType int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top