Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,832 for excluded (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactFilterIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'root'
                include 'libInclude'
                include 'libExclude'
            """
            mavenRepo.module("org.include", "included", "1.3").publish()
            mavenRepo.module("org.exclude", "excluded", "2.3").publish()
    
            buildFile << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
                project(':libInclude') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. hack/verify-flags-underscore.py

    # not contain underscore. If any flag needs to be excluded from this check,
    # need to add that flag in hack/verify-flags/excluded-flags.txt.
    def check_underscore_in_flags(rootdir, files):
        # preload the 'known' flags which don't follow the - standard
        pathname = os.path.join(rootdir, "hack/verify-flags/excluded-flags.txt")
        f = open(pathname, 'r')
        excluded_flags = set(f.read().splitlines())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            moduleIdentifierFactory.module('excluded-group-id', 'excluded-artifact-id')
                >> DefaultModuleIdentifier.newId('excluded-group-id', 'excluded-artifact-id')
    
            then:
            def excluded = pomReader.dependencies[keyGroupTwo].excludedModules
            excluded == [DefaultModuleIdentifier.newId('excluded-group-id', 'excluded-artifact-id')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileTree.java

         * passed to the closure as its delegate. Only files which match the specified include patterns will be included in
         * the filtered tree. Any files which match the specified exclude patterns will be excluded from the filtered
         * tree.</p>
         *
         * @param filterConfigClosure the closure to use to configure the filter.
         * @return The filtered tree.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. releasenotes/notes/ssh-iptables.yaml

        command will automatically configure `ISTIO_LOCAL_EXCLUDE_PORTS` to include port 22. This means that VM users will
        continue to have port 22 excluded, while Kubernetes users will have port 22 included now.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRuleContainer.java

    import java.util.Set;
    
    /**
     * <p>A container for adding exclude rules for dependencies.</p>
     */
    public interface ExcludeRuleContainer {
        /**
         * Returns all the exclude rules added to this container. If no exclude rules has been added an empty list is
         * returned.
         */
        Set<ExcludeRule> getRules();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. tools/bug-report/pkg/bugreport/flags.go

    		return nil, err
    	}
    	gConfig.Exclude = append(gConfig.Exclude, dss)
    	// Exclude namespace provided by --exclude flag
    	for _, s := range excluded {
    		ess := &config2.SelectionSpec{}
    		if err := ess.UnmarshalJSON([]byte(s)); err != nil {
    			return nil, err
    		}
    		ess.Namespaces = slices.FilterInPlace(ess.Namespaces, func(ns string) bool { return !inject.IgnoredNamespaces.Contains(ns) })
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top