Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,081 for excluded (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

            succeeds 'copyFiles'
    
            then: // Currently fails: excluded dependency is copied as part of configuration
            file('libs').assertHasDescendants('direct-dep-1.0.jar')
        }
    
        // This emulates the behaviour of the Spring Dependency Management plugin when applying dependency excludes from a BOM
        def "can use beforeResolve hook to modify dependency excludes for configuration hierarchy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/transform/after.pom

            <configuration>
              <modules>
                <webModule>
                  <groupId>artifactGroupId</groupId>
                  <artifactId>artifactId</artifactId>
                  <excluded>true</excluded>
                </webModule>
              </modules>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <profiles>
        <profile>
          <id>default-active</id>
          <activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            [included1, included2, excluded1, excluded2, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            fileTree.exclude '**/excluded*'
    
            FileTree filtered = fileTree.matching {
                include('*/*included*')
                exclude('**/not*')
            }
    
            expect:
            filtered.files == [included1, included2] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. hack/verify-no-vendor-cycles.sh

    # Staging repos are explicitly excluded even though go list does not currently consider symlinks
    go run cmd/dependencycheck/dependencycheck.go -restrict "^k8s\.io/kubernetes/" -exclude "^k8s\.io/(${staging_repos_pattern})(/|$)" "${KUBE_TEMP}/deps_other.json"
    go run cmd/dependencycheck/dependencycheck.go -restrict "^k8s\.io/kubernetes/" -exclude "^k8s\.io/(${staging_repos_pattern})(/|$)" "${KUBE_TEMP}/deps_linux.json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/cpp/AbstractCppComponentIntegrationTest.groovy

            result.assertTasksExecutedAndNotSkipped(tasksToAssembleDevelopmentBinary, ":$taskNameToAssembleDevelopmentBinary")
        }
    
        def "assemble task warns when current operating system family is excluded"() {
            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. cmd/bucket-versioning.go

    	if err != nil {
    		logger.CriticalIf(GlobalContext, err)
    	}
    	return vc.Enabled()
    }
    
    // PrefixEnabled returns true is versioning is enabled at bucket level and if
    // the given prefix doesn't match any excluded prefixes pattern. This is
    // part of a MinIO versioning configuration extension.
    func (sys *BucketVersioningSys) PrefixEnabled(bucket, prefix string) bool {
    	vc, err := sys.Get(bucket)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/transform/before.pom

            <configuration>
              <modules>
                <webModule>
                  <groupId>artifactGroupId</groupId>
                  <artifactId>artifactId</artifactId>
                  <excluded>true</excluded>
                </webModule>
              </modules>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>default-active</id>
          <activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top