Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,530 for excluded (0.13 sec)

  1. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        /**
         * Returns the names of the tasks to be excluded from this build. When empty, no tasks are excluded from the build.
         *
         * @return The names of the excluded tasks. Returns an empty set if there are no such tasks.
         */
        public Set<String> getExcludedTaskNames() {
            return excludedTaskNames;
        }
    
        /**
         * Sets the tasks to exclude from this build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *
     *     //and hint to mark some of existing source dirs as generated sources
     *     generatedSourceDirs += file('some-extra-source-folder')
     *
     *     //and some extra dirs that should be excluded by IDEA
     *     excludeDirs += file('some-extra-exclude-dir')
     *
     *     //if you don't like the name Gradle has chosen
     *     name = 'some-better-name'
     *
     *     //if you prefer different output folders
     *     inheritOutputDirs = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/internal/buildid/buildid_test.go

    				}
    			}
    		}
    	}
    }
    
    func TestExcludedReader(t *testing.T) {
    	const s = "0123456789abcdefghijklmn"
    	tests := []struct {
    		start, end int64    // excluded range
    		results    []string // expected results of reads
    	}{
    		{12, 15, []string{"0123456789", "ab\x00\x00\x00fghij", "klmn"}},                              // within one read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/go/types/union.go

    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    			// in the term list of the union's type set).
    			if f != nil {
    				tset := f.typeSet()
    				switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/types2/union.go

    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    			// in the term list of the union's type set).
    			if f != nil {
    				tset := f.typeSet()
    				switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top