Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,081 for excluded (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/testdata/script/mod_get_tags.txt

    env GO111MODULE=on
    
    # get should add modules needed to build packages, even if those
    # dependencies are in sources excluded by build tags.
    # All build tags are considered true except "ignore".
    go mod init m
    go get .
    go list -m all
    stdout 'example.com/version v1.1.0'
    stdout 'rsc.io/quote v1.5.2'
    
    -- empty.go --
    package m
    
    -- excluded.go --
    // +build windows,mips
    
    package m
    
    import _ "example.com/version"
    
    -- tools.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:18:36 UTC 2021
    - 566 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AnonymousClassesFilteringTest.kt

     */
    
    package gradlebuild.binarycompatibility
    
    import org.junit.Test
    
    
    class AnonymousClassesFilteringTest : AbstractBinaryCompatibilityTest() {
    
        @Test
        fun `anonymous classes are excluded (java)`() {
    
            checkBinaryCompatibleJava(
                v1 = """
                    public class Source {
                        public void some() {}
                    }
                """,
                v2 = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top