Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,759 for Forked (0.14 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            if (isSameOrOlder("4.11")) {
                return javaVersion >= JavaVersion.VERSION_1_7 && javaVersion <= JavaVersion.VERSION_1_10
            }
    
            // 5.4 officially added support for JDK 12, but it worked before then.
            if (isSameOrOlder("5.7")) {
                return javaVersion >= JavaVersion.VERSION_1_8 && javaVersion <= JavaVersion.VERSION_12
            }
    
            if (isSameOrOlder("6.0")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/syscall/wtf8_windows.go

    // decoded into a valid UTF-8 string. This file defines a set of functions
    // that can be used to encode and decode potentially ill-formed UTF-16 strings
    // by using the [the WTF-8 encoding](https://simonsapin.github.io/wtf-8/).
    //
    // WTF-8 is a strict superset of UTF-8, i.e. any string that is
    // well-formed in UTF-8 is also well-formed in WTF-8 and the content
    // is unchanged. Also, the conversion never fails and is lossless.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithProjectDependenciesIntegrationTest.groovy

                    id 'eclipse'
                    id 'java-library'
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in main source set dependency configurations are not marked with test classpath attribute"() {
            given:
            file('a/build.gradle') << """
                dependencies {
                    implementation project(':b')
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

            if (forcedVersion != null) {
                return sorted.subList(sorted.indexOf(forcedVersion), sorted.size());
            } else {
                return sorted;
            }
        }
    
        Set<ModuleResolveState> getParticipatingModules() {
            return participatingModules;
        }
    
        @Nullable
        public ComponentIdentifier getSelectedPlatformId() {
            ComponentState selected = platformModule.getSelected();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. .github/workflows/stale-issues.yml

            with:
              #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
              #Limit the No. of API calls in one run default value is 30.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. internal/lock/lock_windows.go

    	//
    	// The MSDN docs appear to say that a normal path that is 248 bytes long
    	// will work; empirically the path must be less then 248 bytes long.
    	if len(path) < 248 {
    		// Don't fix. (This is how Go 1.7 and earlier worked,
    		// not automatically generating the \\?\ form)
    		return path
    	}
    
    	// The extended form begins with \\?\, as in
    	// \\?\c:\windows\foo.txt or \\?\UNC\server\share\foo.txt.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/internal/runtime/exithook/hooks.go

    }
    
    var (
    	locked  atomic.Int32
    	runGoid atomic.Uint64
    	hooks   []Hook
    	running bool
    
    	// runtime sets these for us
    	Gosched func()
    	Goid    func() uint64
    	Throw   func(string)
    )
    
    // Add adds a new exit hook.
    func Add(h Hook) {
    	for !locked.CompareAndSwap(0, 1) {
    		Gosched()
    	}
    	hooks = append(hooks, h)
    	locked.Store(0)
    }
    
    // Run runs the exit hooks.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/archive/impl/FileZipInputTest.groovy

        def "throws FileException when zip is badly formed"() {
            def file = temporaryFolder.file("badly-formed").createFile()
    
            when:
            FileZipInput.create(file)
    
            then:
            thrown(FileException)
        }
    
        // This documents current behaviour, not desired behaviour
        @Requires(UnitTestPreconditions.Jdk10OrEarlier)
        def "silently ignores zip that is badly formed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestSourcesIntegrationTest.groovy

    class EclipseTestSourcesIntegrationTest extends AbstractEclipseTestSourcesIntegrationTest {
    
        @ToBeFixedForConfigurationCache
        def "source directories from main source sets are not marked with test classpath attribute"() {
            buildFile << """
                plugins {
                    id 'java'
                    id 'eclipse'
                }
            """
            file('src/main/java').mkdirs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. test/fixedbugs/bug455.go

    func main() {
    	test := newTest()
    
    	switch {
    	case test.
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Result():
    		// case worked
    	default:
    		panic("Result returned false unexpectedly")
    	}
    }
    
    func (t *test_t) Test() test_i {
    	return t
    }
    
    func (t *test_t) Result() bool {
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 777 bytes
    - Viewed (0)
Back to top