Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,887 for current$ (4.55 sec)

  1. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

                if (releasedDist && !releasedDist.worksWith(Jvm.current())) {
                    add(new IgnoredGradleRunnerExecution(testedGradleDistribution, 'does not work with current JVM'))
                } else if (releasedDist && !releasedDist.isToolingApiTargetJvmSupported(Jvm.current().javaVersion)) {
                    add(new IgnoredGradleRunnerExecution(testedGradleDistribution, 'does not work with current JVM due to an incompatibility with the tooling API'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. cmd/metacache-stream.go

    	}
    	if !next.hasPrefix(prefix) {
    		return metaCacheEntriesSorted{}, io.EOF
    	}
    
    	if r.current.name != "" {
    		if (inclDeleted || !r.current.isLatestDeletemarker()) && r.current.hasPrefix(prefix) && (inclDirs || r.current.isObject()) {
    			res = append(res, r.current)
    		}
    		r.current.name = ""
    		r.current.metadata = nil
    	}
    
    	for n < 0 || len(res) < n {
    		if more, err := r.mr.ReadBool(); !more {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeMultiset.java

          for (AvlNode<E> current = header.succ(); current != header; ) {
            AvlNode<E> next = current.succ();
    
            current.elemCount = 0;
            // Also clear these fields so that one deleted Entry doesn't retain all elements.
            current.left = null;
            current.right = null;
            current.pred = null;
            current.succ = null;
    
            current = next;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	f.mu.Lock()
    	defer f.mu.Unlock()
    
    	current := f.current.Load()
    	if current == nil {
    		return nil, nop
    	}
    	debugPrintf("newCounter %s in %s\n", name, current.f.Name())
    	if v, _, _, _ := current.lookup(name); v != nil {
    		return v, nop
    	}
    	v, newM, err := current.newCounter(name)
    	if err != nil {
    		debugPrintf("newCounter %s: %v\n", name, err)
    		return nil, nop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            List<JApiCmpWorkerAction.Archive> current = !newArchives.isEmpty() ? toArchives(newArchives) : inferArchives(getNewClasspath());
            execForNewGradle(baseline, current);
        }
    
        private void execForNewGradle(final List<JApiCmpWorkerAction.Archive> baseline, final List<JApiCmpWorkerAction.Archive> current) {
            WorkQueue queue = getWorkerExecutor().processIsolation(spec -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. cluster/common.sh

    }
    
    # Gets username, password for the current-context in kubeconfig, if they exist.
    # Assumed vars:
    #   KUBECONFIG  # if unset, defaults to global
    #   KUBE_CONTEXT  # if unset, defaults to current-context
    #
    # Vars set:
    #   KUBE_USER
    #   KUBE_PASSWORD
    #
    # KUBE_USER,KUBE_PASSWORD will be empty if no current-context is set, or
    # the current-context user does not exist or contain basicauth entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

    import spock.lang.Issue
    
    class JavaCompileTest extends AbstractProjectBuilderSpec {
    
        def "uses current JVM toolchain compiler as convention and sets source and target compatibility"() {
            def javaCompile = project.tasks.create('compileJava', JavaCompile)
            javaCompile.destinationDirectory.fileValue(new File('tmp'))
            def javaHome = Jvm.current().javaHome
    
            when:
            def spec = javaCompile.createSpec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/internal/testenv/testenv.go

    		t.Skipf("skipping test: 'go build' unavailable: %v", goBuildErr)
    	}
    }
    
    // HasGoRun reports whether the current system can run programs with “go run”.
    func HasGoRun() bool {
    	// For now, having go run and having go build are the same.
    	return HasGoBuild()
    }
    
    // MustHaveGoRun checks that the current system can run programs with “go run”.
    // If not, MustHaveGoRun calls t.Skip with an explanation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu.go

    // MIPS64X contains the supported CPU features of the current mips64/mips64le
    // platforms. If the current platform is not mips64/mips64le or the current
    // operating system is not Linux then all feature flags are false.
    var MIPS64X struct {
    	_      CacheLinePad
    	HasMSA bool // MIPS SIMD architecture
    	_      CacheLinePad
    }
    
    // PPC64 contains the supported CPU features of the current ppc64/ppc64le platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            previous: List<ConfigurationCacheFingerprint.InputFile>,
            current: List<File>
        ): InvalidationReason? =
            when (val upToDatePrefix = countUpToDatePrefixOf(previous, current)) {
                previous.size -> {
                    val added = current.size - upToDatePrefix
                    when {
                        added == 1 -> "init script '${displayNameOf(current[upToDatePrefix])}' has been added"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top