Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 635 for earlib (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedBuildJvmCrossVersionSpec.groovy

    class ToolingApiUnsupportedBuildJvmCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            toolingApi.requireDaemons()
        }
    
        def "cannot run a build when build is configured to use Java 7 or earlier"() {
            given:
            projectDir.file("gradle.properties").writeProperties("org.gradle.java.home": jdk.javaHome.absolutePath)
    
            when:
            toolingApi.withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

                }
            """
    
            impl.snapshot { run("impl:${language.compileTaskName}") }
    
            when:
            //add new jar with duplicate class that will be earlier on the classpath (project dependencies are earlier on classpath)
            source api: ["package org.junit; public class Assert {}"]
            file("impl/build.gradle") << "dependencies { implementation project(':api') }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/help.txt

    ! go mod --help
    stderr 'Run ''go help mod'' for usage.'
    
    # Earlier versions of Go printed the same as 'go -h' here.
    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    stderr 'Run ''go help vet'' for details.'
    stderr 'Run ''go tool vet help'' for a full list of flags and analyzers.'
    stderr 'Run ''go tool vet -help'' for an overview.'
    
    # Earlier versions of Go printed a large document here, instead of these two
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/1-time.md

    <!-- go.dev/issue/61542 -->
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    <!-- go.dev/issue/37196 -->
    Second, the timer channel associated with a `Timer` or `Ticker` is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/benchshort.json

    {"Action":"start"}
    {"Action":"output","Output":"# This file ends in an early EOF to trigger the Benchmark prefix test,\n"}
    {"Action":"output","Output":"# which only happens when a benchmark prefix is seen ahead of the \\n.\n"}
    {"Action":"output","Output":"# Normally that's due to the benchmark running and the \\n coming later,\n"}
    {"Action":"output","Output":"# but to avoid questions of timing, we just use a file with no \\n at all.\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 537 bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/timed_workers.go

    	}
    }
    
    // TimedWorker is a responsible for executing a function no earlier than at FireAt time.
    type TimedWorker struct {
    	WorkItem  *WorkArgs
    	CreatedAt time.Time
    	FireAt    time.Time
    	Timer     clock.Timer
    }
    
    // createWorker creates a TimedWorker that will execute `f` not earlier than `fireAt`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/benchshort.test

    # This file ends in an early EOF to trigger the Benchmark prefix test,
    # which only happens when a benchmark prefix is seen ahead of the \n.
    # Normally that's due to the benchmark running and the \n coming later,
    # but to avoid questions of timing, we just use a file with no \n at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:53:38 UTC 2018
    - 318 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationCppInteroperabilityIntegrationTest.groovy

                    apply plugin: 'cpp-library'
                    library.linkage = [Linkage.${linkage}]
                }
            """
            app.writeToProject(file("app"))
            cppGreeter.asLib().writeToProject(file("cppGreeter"))
            logger.asLib().writeToProject(file("logger"))
    
            expect:
            succeeds ":app:assemble"
            result.assertTasksExecuted(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_missingmod_v1.9.0.txt

    The go.mod file at this version will be loaded to check for retractions
    of earlier versions. However, the .mod file is not available.
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 167 bytes
    - Viewed (0)
  10. src/runtime/rand.go

    // the full requested amount.
    // Whatever entropy r already contained is preserved.
    func readTimeRandom(r []byte) {
    	// Inspired by wyrand.
    	// An earlier version of this code used getg().m.procid as well,
    	// but note that this is called so early in startup that procid
    	// is not initialized yet.
    	v := uint64(nanotime())
    	for len(r) > 0 {
    		v ^= 0xa0761d6478bd642f
    		v *= 0xe7037ed1a0b428db
    		size := 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top