Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 612 for Forked (0.24 sec)

  1. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Provider.java

     * <p>
     * A type can be marked {@link Consumer} or {@link Provider} but not both. A type is assumed to be
     * {@link Consumer} if it is not marked either {@link Consumer} or {@link Provider}.
     * <p>
     * A package can be marked {@link Provider}. In this case, all types in the package are considered
     * to be a provider type regardless of whether they are marked {@link Consumer} or {@link Provider}.
     *
     * @see Consumer
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_json_exit.txt

    wait
    
    # Test binaries that panic in TestMain should be marked as failing.
    
    ! go test -json ./mainpanic
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    ! go tool test2json ./mainpanic.exe
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    # Test binaries that exit with status 0 should be marked as passing.
    
    go test -json ./mainexit0
    stdout '"Action":"pass"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 19:43:21 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

        /**
         * This component was selected by a rule.
         */
        SELECTED_BY_RULE("selected by rule"),
    
        /**
         * This component was selected because selection was forced on this version.
         */
        FORCED("forced"),
    
        /**
         * This component was selected between several candidates during conflict resolution.
         */
        CONFLICT_RESOLUTION("conflict resolution"),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

        private void assertNotLocked() {
            if (locked) {
                throw new IllegalStateException("class loader scope is locked, scope identifier is " + id);
            }
        }
    
        @Override
        public ClassLoaderScope lock() {
            locked = true;
            return this;
        }
    
        @Override
        public boolean isLocked() {
            return locked;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ForcedDependencyMetadataWrapper.java

                return ((DefaultProjectDependencyMetadata) dependencyMetadata).forced();
            }
            return new ForcedDependencyMetadataWrapper((ModuleDependencyMetadata) dependencyMetadata);
        }
    
        @Override
        public boolean isForce() {
            return true;
        }
    
        @Override
        public ForcingDependencyMetadata forced() {
            return this;
        }
    
        public ModuleDependencyMetadata unwrap() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/AbstractExecutionPlanSpec.groovy

            boolean tryLock() {
                if (!locks.contains(this) && locked) {
                    return false
                }
                locked = true
                locks.add(this)
                return true
            }
    
            @Override
            void unlock() {
                locked = false
                locks.remove(this)
            }
    
            @Override
            String getDisplayName() {
                return "some lock"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/NebulaPluginsSmokeTest.groovy

            "org.apache.commons:commons-math3": {
                "locked": "3.6.1",
                "requested": "3.6.1"
            }
        },
        "default": {
            "org.apache.commons:commons-math3": {
                "locked": "3.6.1",
                "requested": "3.6.1"
            }
        },
        "runtimeClasspath": {
            "org.apache.commons:commons-math3": {
                "locked": "3.6.1",
                "requested": "3.6.1"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/runtime/coro.go

    	// the same thread must be used, and the locked state must match with the thread-lock state of
    	// the goroutine which called newcoro. Thread-lock state consists of the thread and the number
    	// of internal (cgo callback, etc.) and external (LockOSThread) thread locks.
    	locked := gp.lockedm != 0
    	if c.mp != nil || locked {
    		if mp != c.mp || mp.lockedInt != c.lockedInt || mp.lockedExt != c.lockedExt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ForcingDependencyMetadata.java

         * Was the dependency created with the 'force' attribute.
         */
        boolean isForce();
    
        /**
         * Returns a copy of this dependency metadata, using force.
         * @return forced dependency metadata
         */
        ForcingDependencyMetadata forced();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1000 bytes
    - Viewed (0)
  10. test/fixedbugs/issue24651a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    //go:norace
    func Foo(x int) int { // ERROR "cannot inline Foo: marked go:norace with -race compilation$"
    	return x * (x + 1) * (x + 2)
    }
    
    func Bar(x int) int { // ERROR "can inline Bar with cost .* as: func\(int\) int { return x \* \(x \+ 1\) \* \(x \+ 2\) }$"
    	return x * (x + 1) * (x + 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 881 bytes
    - Viewed (0)
Back to top