Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 312 for ccompile (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     *
     * <p>{@link org.apache.maven.api.DependencyScope} defines when/how a given dependency will be used by the
     * project.  This includes compile-time only, runtime, test time and various other combinations.</p>
     *
     * <h3>Resolution</h3>
     *
     * <p><dfn>Version resolution</dfn> is the process of finding, for a given artifact, a list of
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *      <td>Flags this Mojo as requiring the dependencies in the specified scope (or an implied scope) to be
     *          resolved before it can execute.
     *          <br>
     *          <i>NOTE: Currently supports <b>compile</b>, <b>runtime</b>, and <b>test</b> scopes.</i>
     *      </td>
     *   </tr>
     *   <tr>
     *      <td>description</td>
     *      <td>none (detected)</td>
     *      <td>No</td>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                            || Artifact.SCOPE_PROVIDED.equals(nearestArtifact.getScope()))) {
                updateScope = true;
            }
    
            /* farthest is compile and nearest is not (has lower priority), change to compile */
            if (Artifact.SCOPE_COMPILE.equals(farthestArtifact.getScope())
                    && !Artifact.SCOPE_COMPILE.equals(nearestArtifact.getScope())) {
                updateScope = true;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                        final String[] values = t.split(":", 2);
                        if (values.length != 2) {
                            return null;
                        }
                        return new Pair<>(values[0], Pattern.compile(values[1]));
                    })).toList());
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Splitter.java

                };
              }
            });
      }
    
      /**
       * Returns a splitter that considers any subsequence matching {@code pattern} to be a separator.
       * For example, {@code Splitter.on(Pattern.compile("\r?\n")).split(entireFile)} splits a string
       * into lines whether it uses DOS-style or UNIX-style line terminators.
       *
       * @param separatorPattern the pattern that determines whether a subsequence is a separator. This
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 21:14:05 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. gradle/libs.versions.toml

    signature-android-apilevel24 = "net.sf.androidscents.signature:android-api-level-24:7.0_r2"
    squareup-moshi = { module = "com.squareup.moshi:moshi", version.ref = "com-squareup-moshi" }
    squareup-moshi-compiler = { module = "com.squareup.moshi:moshi-kotlin-codegen", version.ref = "com-squareup-moshi" }
    squareup-moshi-kotlin = { module = "com.squareup.moshi:moshi-kotlin", version.ref = "com-squareup-moshi" }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Oct 28 11:53:44 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

    public class PluginDescriptor extends ComponentSetDescriptor implements Cloneable {
    
        private static final String LIFECYCLE_DESCRIPTOR = "META-INF/maven/lifecycle.xml";
    
        private static final Pattern PATTERN_FILTER_1 = Pattern.compile("-?(maven|plugin)-?");
    
        private String groupId;
    
        private String artifactId;
    
        private String version;
    
        private String goalPrefix;
    
        private String source;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    - plugin execution error due to something that is not expected to go wrong (the compiler executable missing)
    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    - goal not found in a plugin (probably could list the ones that are)
    
     */
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pom.xml

    			</plugin>
    			<plugin>
    				<groupId>net.alchim31.maven</groupId>
    				<artifactId>yuicompressor-maven-plugin</artifactId>
    				<executions>
    					<execution>
    						<phase>compile</phase>
    						<goals>
    							<goal>compress</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<nosuffix>true</nosuffix>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 02:16:03 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. LICENSES/third_party/forked/cgroups/LICENSE

          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Oct 31 17:42:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top