Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 201 for sources (0.49 sec)

  1. .teamcity/pom.xml

                            <id>compile</id>
                            <phase>process-sources</phase>
                            <goals>
                                <goal>compile</goal>
                            </goals>
                        </execution>
                        <execution>
                            <id>test-compile</id>
                            <phase>process-test-sources</phase>
                            <goals>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:44:21 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

              </plugin>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.0.2</version>
                <executions>
                  <execution>
                    <id>attach-sources</id>
                    <goals>
                      <goal>jar</goal>
                    </goals>
                  </execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

                  files=".*[/\\]internal-architecture-testing[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\].+" />
    
        <!-- Ignore all checks for the generated sources of org.gradle.samples plugin -->
        <suppress checks=".*" files=".*[/\\]docs[/\\]build[/\\]generated-source-sets[/\\].+" />
        <suppress checks=".*" files=".*[/\\].*[/\\]groovy-dsl-plugins[/\\].+" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/project-builder/mng-3023/dependency/pom.xml

                <configuration>
                  <mainFile>dependency-classes</mainFile>
                </configuration>
              </execution>
              <execution>
                <id>install</id>
                <phase>generate-sources</phase>
                <goals>
                  <goal>set</goal>
                  <goal>attach-pom</goal>
                  <goal>install</goal>
                </goals>
                <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 2.2K bytes
    - Viewed (0)
  5. maven-model/pom.xml

                <goals>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-resources</phase>
              </execution>
              <execution>
                <id>model-v3</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <version>4.0.99</version>
                  <templates>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. pom.xml

    				<version>3.10.1</version>
    				<configuration>
    					<source>1.8</source>
    					<target>1.8</target>
    					<encoding>UTF-8</encoding>
    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-source-plugin</artifactId>
    				<version>3.2.1</version>
    				<executions>
    					<execution>
    						<id>attach-sources</id>
    						<goals>
    							<goal>jar</goal>
    						</goals>
    					</execution>
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Thu Jan 04 12:50:27 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. doc/asm.html

    A data symbol with a total size smaller than a pointer
    is also treated as implicitly marked <code>NOPTR</code>.
    It is not possible to define a symbol containing pointers in an assembly source file;
    such a symbol must be defined in a Go source file instead.
    Assembly source can still refer to the symbol by name
    even without <code>DATA</code> and <code>GLOBL</code> directives.
    A good general rule of thumb is to define all non-<code>RODATA</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

        // We don't want this to be parseable...it's sort of 'hidden'
        // default source for this profile is in the pom itself.
        private String source = SOURCE_POM;
    
        public void setSource(String source) {
            this.source = source;
        }
    
        public String getSource() {
            return source;
        }
    
        /**
         * @see java.lang.Object#toString()
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. android/guava/pom.xml

              </excludePackageNames>
              <!-- Ignore some tags that are found in Java 11 sources but not recognized... under -source 8, I think it was? I can no longer reproduce the failure. -->
              <tags>
                <tag>
                  <name>apiNote</name>
                  <placement>X</placement>
                </tag>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. android/pom.xml

              <version>3.2.0</version>
            </plugin>
            <plugin>
              <artifactId>maven-source-plugin</artifactId>
              <version>3.3.0</version>
              <executions>
                <execution>
                  <id>attach-sources</id>
                  <goals>
                    <goal>jar-no-fork</goal>
                  </goals>
                </execution>
              </executions>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top