Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for first (0.19 sec)

  1. .idea/codeStyles/Project.xml

          </indentOptions>
        </codeStyleSettings>
        <codeStyleSettings language="JAVA">
          <option name="LINE_COMMENT_AT_FIRST_COLUMN" value="false" />
          <option name="BLOCK_COMMENT_AT_FIRST_COLUMN" value="false" />
          <option name="KEEP_FIRST_COLUMN_COMMENT" value="false" />
          <option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" />
          <option name="ELSE_ON_NEW_LINE" value="true" />
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue May 02 13:36:56 GMT 2023
    - 4.1K bytes
    - Viewed (3)
  2. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

                <configuration>
                  <logFile>target/it.properties</logFile>
                </configuration>
                <executions>
                  <execution>
                    <id>first</id>
                    <phase>validate</phase>
                    <goals>
                      <goal>reset</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 4.4K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/conf/settings.xml

      <!-- proxies
       | This is a list of proxies which can be used on this machine to connect to the network.
       | Unless otherwise specified (by system property or command-line switch), the first proxy
       | specification in this list marked as active will be used.
       |-->
      <proxies>
        <!-- proxy
         | Specification for one proxy, to be used in connecting to the network.
         |
        <proxy>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  4. guava-gwt/pom.xml

                Let's take the warnings for one module, c.g.c.base.testModule, as an example:
    
                  [INFO] Validating units:
                  [INFO]    Ignored 53 units with compilation errors in first pass.
                  [INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
    
                Turning up the log level, we see that GWT is trying to compile classes from other
    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)
  5. maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml

      <name>Maven Integration Test :: MNG-1412</name>
      <description>
        Check that dependencies are available in classpath in same order as declared in POM.
      </description>
    
      <dependencies>
        <!-- model dependencies first, in the order given -->
        <dependency>
          <groupId>org.apache.maven.its.mng1412</groupId>
          <artifactId>a</artifactId>
          <version>0.1</version>
        </dependency>
        <dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml

              <dependencies>
                <dependency>
                  <groupId>group</groupId>
                  <artifactId>first</artifactId>
                  <version>1</version>
                </dependency>
              </dependencies>
              <executions>
                <execution>
                  <id>first</id>
                  <goals>
                    <goal>compile</goal>
                  </goals>
                </execution>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/merged-filter-order/pom.xml

      <name>Maven Integration Test :: MNG-4008</name>
      <description>
        Verify that filter definitions are properly merged.
      </description>
    
      <build>
        <filters>
          <!-- NOTE: The first filter is deliberately defined by the child as well, so should not be added twice -->
          <filter>src/main/filters/child-a.properties</filter>
          <filter>src/main/filters/parent-c.properties</filter>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  8. api/maven-api-settings/src/main/mdo/settings.mdo

        /**
         * Reset the {@code activeProxy} field to {@code null}.
         */
        public void flushActiveProxy() {
            this.activeProxy = null;
        }
    
        /**
         * @return the first active proxy
         */
        public synchronized Proxy getActiveProxy() {
            if (activeProxy == null) {
                java.util.List<Proxy> proxies = getProxies();
                if (proxies != null && !proxies.isEmpty()) {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  9. src/main/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" value="do not insert"/>
    <setting id="org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>
    <setting id="org.eclipse.jdt.core.compiler.problem.enumIdentifier" value="error"/>
    <setting id="org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" value="insert"/>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Sep 17 06:39:42 GMT 2017
    - 30.5K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                The relative path of the parent {@code pom.xml} file within the checkout.
                If not specified, it defaults to {@code ../pom.xml}.
                Maven looks for the parent POM first in this location on
                the filesystem, then the local repository, and lastly in the remote repo.
                {@code relativePath} allows you to select a different location,
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top