Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 362 for highest (0.16 sec)

  1. src/cmd/internal/pgo/pgo.go

    // NamedEdgeMap contains all unique call edges in the profile and their
    // edge weight.
    type NamedEdgeMap struct {
    	Weight map[NamedCallEdge]int64
    
    	// ByWeight lists all keys in Weight, sorted by edge weight from
    	// highest to lowest.
    	ByWeight []NamedCallEdge
    }
    
    func emptyProfile() *Profile {
    	// Initialize empty maps/slices for easier use without a requiring a
    	// nil check.
    	return &Profile{
    		NamedEdgeMap: NamedEdgeMap{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** If both parts are numeric, the highest numeric value is **higher**: `1.1` < `1.2`
    ** If one part is numeric, it is considered **higher** than the non-numeric part: `1.a` < `1.1`
    ** If both are non-numeric, the parts are compared **alphabetically**, in a **case-sensitive** manner: `1.A` < `1.B` < `1.a` < `1.b`
    ** A version with an extra numeric part is considered **higher** than a version without (even when it's zero): `1.1` < `1.1.0`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. manifests/charts/ztunnel/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    	}
    }
    
    // The used capacity is calculated on a scale of 0-MaxNodeScore (MaxNodeScore is
    // constant with value set to 100).
    // 0 being the lowest priority and 100 being the highest.
    // The more resources are used the higher the score is. This function
    // is almost a reversed version of noderesources.leastRequestedScore.
    func mostRequestedScore(requested, capacity int64) int64 {
    	if capacity == 0 {
    		return 0
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaProject.xml

                </tr>
                <tr>
                    <td>targetBytecodeVersion</td>
                    <td><literal>JavaVersion.JAVA_1_6</literal></td>
                    <td>Highest <literal>project.targetCompatibility</literal> value of all java subprojects or <literal>JavaVersion.JAVA_1_6</literal> if no java project found.</td>
                </tr>
                <tr>
                    <td>wildcards</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_amd64.s

    	MOVQ	-8(DI)(R8*1), CX
    	CMPQ	AX, CX
    	JEQ	allsame
    
    	// AX and CX contain parts of a and b that differ.
    diff8:
    	BSWAPQ	AX	// reverse order of bytes
    	BSWAPQ	CX
    	XORQ	AX, CX
    	BSRQ	CX, CX	// index of highest bit difference
    	SHRQ	CX, AX	// move a's bit to bottom
    	ANDQ	$1, AX	// mask bit
    	LEAQ	-1(AX*2), AX // 1/0 => +1/-1
    	RET
    
    	// 0-7 bytes in common
    small:
    	LEAQ	(R8*8), CX	// bytes left -> bits left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/cmd/internal/pgo/serialize.go

    //      callee_name
    //      "call site offset" "call edge weight"
    //      ...
    //      caller_name
    //      callee_name
    //      "call site offset" "call edge weight"
    //
    // Entries are sorted by "call edge weight", from highest to lowest.
    
    const serializationHeader = "GO PREPROFILE V1\n"
    
    // WriteTo writes a serialized representation of Profile to w.
    //
    // FromSerialized can parse the format back to Profile.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/scheme/scheme.go

    	utilruntime.Must(kubeadm.AddToScheme(scheme))
    	utilruntime.Must(v1beta3.AddToScheme(scheme))
    	utilruntime.Must(v1beta4.AddToScheme(scheme))
    	// TODO: https://github.com/kubernetes/kubeadm/issues/2890
    	// make v1beta4 highest priority
    	utilruntime.Must(scheme.SetVersionPriority(v1beta3.SchemeGroupVersion, v1beta4.SchemeGroupVersion))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 10:43:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top