Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,108 for Excluded (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         * @param artifacts The artifacts to add to the class realm, may be {@code null}. Unresolved artifacts (i.e. with a
         *            missing file) will automatically be excluded from the realm.
         * @return The new project realm, never {@code null}.
         */
        ClassRealm createProjectRealm(Model model, List<Artifact> artifacts);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. ci/official/utilities/code_check_changed_files.bats

        else
            # If the branch is not present, then diff against origin/master
            git diff --diff-filter ACMRT --name-only origin/master > $BATS_FILE_TMPDIR/changed_files
        fi
    }
    
    # Note: this is excluded on the full code base, since any submitted code must
    # have passed Google's internal style guidelines.
    @test "Check buildifier formatting on BUILD files" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

        static class IncludedBuildLocation extends DefaultExcludesLocation {
    
            @Override
            String includedFileName() {
                return "included-by-included-build.txt"
            }
    
            @Override
            String excludedFileName() {
                return "excluded-by-included-build.txt"
            }
    
            @Override
            void applyDefaultExcludes(AbstractIntegrationSpec spec, ScriptLanguage scriptLanguage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/flags.go

    	// include / exclude specs
    	cmd.PersistentFlags().StringSliceVar(&included, "include", bugReportDefaultInclude,
    		"Spec for which pod's proxy logs to include in the archive. See above for format and examples.")
    	cmd.PersistentFlags().StringSliceVar(&excluded, "exclude", bugReportDefaultExclude,
    		"Spec for which pod's proxy logs to exclude from the archive, after the include spec "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/integTest/groovy/org/gradle/internal/vfs/DefaultExcludesIntegrationTest.groovy

            fails "copyTask"
    
            then:
            failure.assertHasCause "Cannot change default excludes during the build. They were changed from ${defaultExcludesFromSettings} to ${defaultExcludesInTask}. Configure default excludes in the settings script instead."
        }
    
        @Issue("https://github.com/gradle/gradle/issues/27225")
        def "default excludes are removed properly"() {
            def defaultExclude = '.gitignore'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

        else
            # If the branch is not present, then diff against origin/master
            git diff --diff-filter ACMRT --name-only origin/master > $BATS_FILE_TMPDIR/changed_files
        fi
    }
    
    # Note: this is excluded on the full code base, since any submitted code must
    # have passed Google's internal style guidelines.
    @test "Check buildifier formatting on BUILD files" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_bridge_v1/BUILD

    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        exclude = [
            # TODO(b/305738491): Temporarily excluded until Bridge V1 has all passes as pass pipelines.
            "end_to_end.mlir",
        ],
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 13:17:22 UTC 2023
    - 844 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

     * an external repository when not needed.</p>
     *
     * <p>Excludes are applied after includes. This means that by default, everything is included and nothing excluded.
     * If includes are added, then if the module doesn't match any of the includes, it's excluded. Then if it does, but
     * it also matches one of the excludes, it's also excluded.</p>
     *
     * @since 5.1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                            .expectResult(MODULE_B),
                    scenario("Excluded project")
                            .inactiveRequiredProjects(MODULE_B)
                            .expectResult(PARENT_MODULE, MODULE_C, MODULE_C_1, MODULE_A, MODULE_C_2, INDEPENDENT_MODULE),
                    scenario("Excluded optional project")
                            .inactiveOptionalProjects(MODULE_B)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorBuilder.java

            // experimentation shows the following, excluded modules are
            // inherited from parent POMs if either of the following is true:
            // the <exclusions> element is missing or the <exclusions> element
            // is present, but empty.
            List<ExcludeMetadata> excludes = new ArrayList<>();
            List<ModuleIdentifier> excluded = dep.getExcludedModules();
            if (excluded.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top