Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,026 for excluded (0.26 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

        static class IncludedBuildLocation extends DefaultExcludesLocation {
    
            @Override
            String includedFileName() {
                return "included-by-included-build.txt"
            }
    
            @Override
            String excludedFileName() {
                return "excluded-by-included-build.txt"
            }
    
            @Override
            void applyDefaultExcludes(AbstractIntegrationSpec spec, ScriptLanguage scriptLanguage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.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. tensorflow/compiler/mlir/tfr/utils/utils.h

    // Copies all the allowed attributes in 'src' to 'dst'. FlatSymbolRefAttr is
    // excluded.
    LogicalResult CopyNonSymbolRefAttrs(CallOp src, Operation* dst);
    
    // Propagates all the attributes in 'src' to the operations between 'begin' and
    // 'end'. Operation 'end' is excluded.
    void PropagateAttrsToOperations(CallOp src, Block::iterator begin,
                                    Block::iterator end);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top