Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 759 for excluded (0.18 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            assertEquals(3, dispatched.size());
            assertEquals(1, unresolved.size());
            assertEquals(8, classes.size()); // "plexus.pom" and "junit.jar" are excluded.
            assertEquals(1, modules.size());
            assertEquals("plexus-1.0.11.pom", unresolved.get(0).getFileName().toString());
            assertEquals("test-extension-1.jar", classes.get(0).getFileName().toString());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InternetDomainName.java

              desiredType, Optional.fromNullable(PublicSuffixPatterns.EXACT.get(ancestorName)))) {
            return i;
          }
    
          // Excluded domains (e.g. !nhs.uk) use the next highest
          // domain as the effective public suffix (e.g. uk).
    
          if (PublicSuffixPatterns.EXCLUDED.containsKey(ancestorName)) {
            return i + 1;
          }
        }
    
        return NO_SUFFIX_FOUND;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                        && !parentArtifact.getDependencyFilter().include(artifact)) {
                                    // MNG-3769: the [probably relocated] artifact is excluded.
                                    // We could process exclusions on relocated artifact details in the
                                    // MavenMetadataSource.createArtifacts(..) step, BUT that would
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  4. docs/bucket/replication/README.md

    ### Interaction with extended Bucket Versioning configuration
    
    When Bucket Versioning with excluded prefixes are configured objects matching these prefixes are excluded from being versioned and replicated.
    
    ```
    <VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
            <Status>Enabled</Status>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            when:
            file("build/output.txt").delete()
            succeeds "customTask"
            then:
            executedAndNotSkipped ":customTask"
        }
    
        def "changes to inputs that are excluded by default leave task up-to-date"() {
            def inputDir = file("inputDir").createDir()
            inputDir.file('inputFile.txt').text = "input file"
            inputDir.createDir('something')
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        /**
         * Adds a module to the module paths included in the Project.
         *
         * @param moduleFile path to the module's module file
         *
         * @since 4.0
         */
        public void addModulePath(File moduleFile) {
            modulePaths.add(pathFactory.relativePath("PROJECT_DIR", moduleFile));
        }
    
        /**
         * A set of wildcard string to be included/excluded from the resources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

        def lockfileFixture = new LockfileFixture(testDirectory: testDirectory)
    
        def setup() {
            settingsFile << "rootProject.name = 'locking-interactions'"
        }
    
        def 'locking constraints do not bring back excluded modules'() {
            def foo = mavenRepo.module('org', 'foo', '1.0').publish()
            mavenRepo.module('org', 'bar', '1.0').dependsOn(foo).publish()
    
            buildFile << """
    dependencyLocking {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*.foo.*"]              | "fooTest"                 | "aaaa"                | false
            ["*.foo.*"]              | "foo"                     | "aaaa"                | false
        }
    
        def "knows if excluded test matches class"() {
            expect:
            matcher([], input, []).matchesTest(className, methodName) == match
    
            where:
            input                    | className                 | methodName            | match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            file('meta-inf1/file.txt').text = 'good'
            file('meta-inf2/file.txt').text = 'bad'
    
    
            buildFile << '''
            task jar(type: Jar) {
                duplicatesStrategy = 'exclude'
                // this should be excluded even though it comes first
                into('META-INF') {
                    from 'meta-inf2'
                }
                metaInf {
                    from 'meta-inf1'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            if (!defaultBuild.isProjectsCreated()) {
                // Too early to resolve excludes
                return new Filter(defaultBuild, Specs.satisfyNone());
            }
            TaskSelector.SelectionContext selection = sanityCheckPath(taskName, "excluded tasks");
            ProjectResolutionResult resolutionResult = resolveProject(selection, selection.getOriginalPath(), defaultBuild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top