Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 302 for excludes (0.2 sec)

  1. guava-gwt/pom.xml

            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <excludes>
                <!-- 2. Don't include the source in the jar (since that would let users depend on it from GWT client code, which is compiled from source). -->
                <exclude>**/ForceGuavaCompilation*</exclude>
                <exclude>**/DummyJavadocClass*</exclude>
              </excludes>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
                <exclude>**/Test*.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <distributionManagement>
        <status>deployed</status>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 767 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                            .toArray(n -> new String[n]);
            final String[] baseFields = fields != null ? fields : fessConfig.getSuggestPopularWordFieldsAsArray();
            final String[] baseExcludes = excludes != null ? excludes : fessConfig.getSuggestPopularWordExcludesAsArray();
            try {
                return cache.get(getCacheKey(baseSeed, baseTags, baseRoles, baseFields, baseExcludes), () -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. pom.xml

    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

        @Test
        public void testIsTargetProperty_excludes() throws Exception {
            final CopyOptions option = new CopyOptions().exclude(BeanNames.hoge());
            assertThat(option.isTargetProperty("hoge"), is(not(true)));
            assertThat(option.isTargetProperty("hoge2"), is(true));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testIsTargetProperty_excludes_prefix() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. android/pom.xml

          <resource>
            <directory>../..</directory>
            <includes>
              <include>LICENSE</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
          </testResource>
        </testResources>
        <plugins>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    object PublicApi {
        val includes = listOf(
            "org/gradle/*",
            "org/gradle/api/**",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 15:00:02 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. api/maven-api-metadata/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

            if (!src.isEmpty()) {
                List<String> tgt = target.getFilters();
                Set<String> excludes = new LinkedHashSet<>(tgt);
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                for (String s : src) {
                    if (!excludes.contains(s)) {
                        merged.add(s);
                    }
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  10. maven-core/pom.xml

                  <exclude>org.apache.maven.repository.LocalArtifactRepository</exclude>
                  <exclude>org.apache.maven.repository.LocalRepositoryNotAccessibleException</exclude>
                  <exclude>org.apache.maven.repository.RepositorySystem</exclude>
                  <exclude>org.apache.maven.settings.DefaultMavenSettingsBuilder</exclude>
                  <exclude>org.apache.maven.settings.MavenSettingsBuilder</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
Back to top