Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for markUsed (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. .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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/mark_functions_noinline.cc

        return {*this, "noinline-functions",
                llvm::cl::desc(
                    "Name of the functions that should be marked "
                    "tf._noinline = true to prevent inlining. The name of the "
                    "function should exactly match to be marked noinline."),
                llvm::cl::list_init<std::string>(noinline_functions),
                llvm::cl::ZeroOrMore};
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 02:52:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top