Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,026 for excluded (0.22 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top