Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 367 for highest (0.22 sec)

  1. pkg/volume/csi/csi_drivers_store.go

    limitations under the License.
    */
    
    package csi
    
    import (
    	"sync"
    
    	utilversion "k8s.io/apimachinery/pkg/util/version"
    )
    
    // Driver is a description of a CSI Driver, defined by an endpoint and the
    // highest CSI version supported
    type Driver struct {
    	endpoint                string
    	highestSupportedVersion *utilversion.Version
    }
    
    // DriversStore holds a list of CSI Drivers
    type DriversStore struct {
    	store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

     * </ul>
     * </li>
     * <li>The equivalent parts of 2 versions are compared using the following rules:
     * <ul>
     *     <li>If both parts are numeric, the highest numeric value is <b>higher</b>: `1.1 {@literal <} 1.2`</li>
     *     <li>If one part is numeric, it is considered <b>higher</b> than the non-numeric part: `1.a {@literal <} 1.1`</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaProjectTest.groovy

            when:
            project.idea.project.outputFile = project.file("other.ipr")
    
            then:
            location.get().asFile == project.idea.project.outputFile
        }
    
        def "project bytecode version set to highest module targetCompatibility"() {
            when:
            project.apply plugin: IdeaPlugin
            childProject.apply plugin: IdeaPlugin
            anotherChildProject.apply plugin: IdeaPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    In the relocation example above, Gradle was able to tell you that you have two versions of the same API on classpath: an "old" module and a "relocated" one.
    Now we can solve the conflict by automatically choosing the component which has the highest capability version:
    
    .Conflict resolution by capability versioning
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/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
    - 2.5K bytes
    - Viewed (0)
  6. src/container/heap/example_pq_test.go

    // A PriorityQueue implements heap.Interface and holds Items.
    type PriorityQueue []*Item
    
    func (pq PriorityQueue) Len() int { return len(pq) }
    
    func (pq PriorityQueue) Less(i, j int) bool {
    	// We want Pop to give us the highest, not lowest, priority so we use greater than here.
    	return pq[i].priority > pq[j].priority
    }
    
    func (pq PriorityQueue) Swap(i, j int) {
    	pq[i], pq[j] = pq[j], pq[i]
    	pq[i].index = i
    	pq[j].index = j
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:27:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    					continue
    				}
    				sample.Location = locs
    			}
    			s = append(s, sample)
    		}
    	}
    	p.Sample = s
    
    	return
    }
    
    // ShowFrom drops all stack frames above the highest matching frame and returns
    // whether a match was found. If showFrom is nil it returns false and does not
    // modify the profile.
    //
    // Example: consider a sample with frames [A, B, C, B], where A is the root.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

                    new BootstrapMainStarter());
        }
    
        private static void addSystemProperties(Properties systemProperties, File gradleUserHome, File rootDir) {
            // The location with highest priority needs to come last here, as it overwrites any previous entries.
            systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(rootDir, "gradle.properties")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/crypto/x509/root_windows.go

    	var verifyTime *syscall.Filetime
    	if opts != nil && !opts.CurrentTime.IsZero() {
    		ft := syscall.NsecToFiletime(opts.CurrentTime.UnixNano())
    		verifyTime = &ft
    	}
    
    	// The default is to return only the highest quality chain,
    	// setting this flag will add additional lower quality contexts.
    	// These are returned in the LowerQualityChains field.
    	const CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS = 0x00000080
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. pkg/apis/scheduling/types.go

    	// that do not specify any priority class and there is no priority class
    	// marked as default.
    	DefaultPriorityWhenNoDefaultClassExists = 0
    	// HighestUserDefinablePriority is the highest priority for user defined priority classes. Priority values larger than 1 billion are reserved for Kubernetes system use.
    	HighestUserDefinablePriority = int32(1000000000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top