Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,880 for current$ (0.21 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
            "tool disagrees with "                | "other" | "current" | "current"  | "javaHome"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/migrator.go

    		case current.version.Major == target.version.Major && current.version.Minor < target.version.Minor:
    			stepVersion := m.cfg.supportedVersions.NextVersionPair(current)
    			klog.Infof("upgrading etcd from %s to %s", current, stepVersion)
    			current, err = m.minorVersionUpgrade(current, stepVersion)
    		case current.version.Major == 3 && target.version.Major == 3 && current.version.Minor > target.version.Minor:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                    }
                }
            }
    
            void added() {
                DefaultFileChange added = DefaultFileChange.added(current.getKey(), propertyTitle, current.getValue().getType(), current.getValue().getNormalizedPath());
                changeConsumer.visitChange(added);
                current = nextEntry(currentEntries);
            }
    
            void removed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/policy.go

    }
    
    func NewHintMerger(numaInfo *NUMAInfo, hints [][]TopologyHint, policyName string, opts PolicyOptions) HintMerger {
    	compareNumaAffinityMasks := func(current, candidate *TopologyHint) *TopologyHint {
    		// If current and candidate bitmasks are the same, prefer current hint.
    		if candidate.NUMANodeAffinity.IsEqual(current.NUMANodeAffinity) {
    			return current
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectInAnyOrder.java

            lock.lock();
            try {
                if (current != null) {
                    ResponseProducer producer = current.selectResponseProducer(id, exchange);
                    if (producer != null) {
                        return producer;
                    }
                    current = null;
                }
                for (TrackingHttpHandler handler : available) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
            if (current.state != State.TraverseChildren) {
                throw new IllegalStateException("Cannot end children.");
            }
            if (current.isTopLevelNode()) {
                writeNode(current);
            }
            current.state = State.Done;
            current = current.parent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestExecutionTest.groovy

            and:
            result.current << operation(totalTime: 110)
            result.current << operation(totalTime: 110)
            result.current << operation(totalTime: 111)
            result.current << operation(totalTime: 111)
            result.current << operation(totalTime: 111)
            result.current << operation(totalTime: 110)
            result.current << operation(totalTime: 110)
            result.current << operation(totalTime: 111)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            def currentDir = new File(new File(stopAt, "intermediate"), 'current')
            currentDir.mkdirs()
    
            expect:
            def layout = locator.getLayoutFor(currentDir, true)
            layout.rootDirectory == currentDir
            layout.settingsDir == currentDir
            layout.settingsFile == new File(currentDir, "settings.gradle") // this is the current behaviour
            layout.buildDefinitionMissing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/BaselineVersionTest.groovy

            baseline.significantlyFasterByMedianThan(current.results, 0.14)
            current.significantlySlowerThan(baseline.results, minConfidence)
        }
    
        def "does not consider changes with less then 10 milliseconds as significant"() {
            baseline.results.addAll([millis(100)] * 10)
            current.results.addAll([millis(105)] * 10)
            def confidence = calculateConfidence(baseline, current)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/os/user/lookup.go

    	groupFile = "/etc/group"
    )
    
    var colon = []byte{':'}
    
    // Current returns the current user.
    //
    // The first call will cache the current user information.
    // Subsequent calls will return the cached value and will not reflect
    // changes to the current user.
    func Current() (*User, error) {
    	cache.Do(func() { cache.u, cache.err = current() })
    	if cache.err != nil {
    		return nil, cache.err
    	}
    	u := *cache.u // copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top