Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 951 for markUsed (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            this.unattached = true;
        }
    
        public void markAttached() {
            this.unattached = false;
        }
    
        public boolean isUnattached() {
            return unattached;
        }
    
        void markUsed() {
            this.used = true;
        }
    
        void markUnused() {
            this.used = false;
        }
    
        /**
         * Indicates whether the edge is currently listed as outgoing in a node.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            dependencyEdge.computeSelector(); // the selector changes, if the 'versionProvidedByAncestors' state changes
            outgoingEdges.add(dependencyEdge);
            dependencyEdge.markUsed();
            discoveredEdges.add(dependencyEdge);
            dependencyEdge.getSelector().use(deferSelection);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheMarkingStrategyIntegrationTest.groovy

            "wrapper/dists" | "NONE"          | true      | "not marked"
            "wrapper/dists" | "CACHEDIR_TAG"  | false     | "not marked"
            "wrapper/dists" | "CACHEDIR_TAG"  | true      | "marked"
            // JDKs are not used by this test, so not marked if not created
            "jdks"          | "NONE"          | false     | "not marked"
            "jdks"          | "NONE"          | true      | "not marked"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/runtime/pinner_test.go

    	if !runtime.IsPinned(unsafe.Pointer(&ifc)) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.IsPinned(unsafe.Pointer(o)) {
    		t.Fatal("marked as pinned")
    	}
    	pinner.Unpin()
    	pinner.Pin(ifc)
    	if !runtime.IsPinned(unsafe.Pointer(o)) {
    		t.Fatal("not marked as pinned")
    	}
    	if runtime.IsPinned(unsafe.Pointer(&ifc)) {
    		t.Fatal("marked as pinned")
    	}
    	pinner.Unpin()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithExternalDependenciesIntegrationTest.groovy

                    maven { url "${mavenRepo.uri}" }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in main source set dependency configurations are not marked with test classpath attribute"() {
            given:
            buildFile << """
                dependencies {
                    implementation 'org:lib:1.0'
                }
            """
    
            when:
            run 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    go work vendor
    cmp modules.txt.want vendor/modules.txt
    go list example.com/a example.com/b
    
    # Module required in go.mod but not marked explicit in modules.txt
    cp modules.txt.required_but_not_explicit vendor/modules.txt
    ! go list example.com/a example.com/b
    cmpenv stderr required_but_not_explicit_error.txt
    
    # Replacement in go.mod but no replacement in modules.txt
    cp modules.txt.missing_replacement vendor/modules.txt
    ! go list example.com/a example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Consumer.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 Consumer}. 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 Provider
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. .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)
  10. 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)
Back to top