Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,368 for Excluded (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

         */
        TestFilter includeTest(String className, String methodName);
    
        /**
         * Excludes a test method specified by test class name and method name.
         *
         * @param className the class name of the test to exclude
         * @param methodName the method name of the test to exclude. Can be null.
         * @return this filter object
         * @since 5.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/test/framework/components/echo/echotest/filters.go

    		if needed <= 0 {
    			needed = 1
    		}
    
    		return nRegularPodPerNamespace(needed, exclude)(instances).Append(nonRegular)
    	}
    }
    
    func SingleSimplePodServiceAndAllSpecial(exclude ...echo.Instance) Filter {
    	return SimplePodServiceAndAllSpecial(1, exclude...)
    }
    
    func nRegularPodPerNamespace(needed int, exclude echo.Instances) Filter {
    	return func(instances echo.Instances) echo.Instances {
    		// Apply the filters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. releasenotes/notes/45641.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 21:04:47 UTC 2023
    - 252 bytes
    - Viewed (0)
  10. 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)
Back to top