Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 534 for Totals (0.04 seconds)

  1. impl/maven-core/lifecycle-executor.txt

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      .
      .
      .
    </plugins>
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 9.7K bytes
    - Click Count (0)
  2. android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java

            CharBuffer buf = CharStreams.createBuffer();
            long total = 0;
            while (from.read(buf) != -1) {
              ((Buffer) buf).flip();
              to.append(buf);
              total += buf.remaining();
              ((Buffer) buf).clear();
            }
            return total;
          }
        },
        NEW {
          @Override
          long copy(Readable from, Appendable to) throws IOException {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  3. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("child-a", pom.getValue("build/plugins[1]/executions[1]/goals[1]"));
            assertEquals("merged", pom.getValue("build/plugins[1]/executions[1]/goals[2]"));
            assertEquals("child-b", pom.getValue("build/plugins[1]/executions[1]/goals[3]"));
            assertEquals("parent-b", pom.getValue("build/plugins[1]/executions[1]/goals[4]"));
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 94.8K bytes
    - Click Count (0)
  4. impl/maven-core/src/test/projects/plugin-manager/project-contributing-system-scope-plugin-dep/pom.xml

                  <resourcePaths>maven-core-it.properties</resourcePaths>
                  <pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput>
                </configuration>
                <goals>
                  <goal>load</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        /**
         * Set configuration to pass to all goals run in this phase.
         *
         * @param configuration a configuration object.
         */
        public void setConfiguration(Object configuration) {
            this.configuration = configuration;
        } // -- void setConfiguration( Object )
    
        /**
         * Set the goals to execute within the phase.
         *
         * @param executions a executions object.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.4K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            d.bufDataStart = 20;
            d.totalParameterCount = 5; // Total parameter count
            d.totalDataCount = 4; // Total data count
            d.parameterCount = 5; // Current parameter count matches total
            d.parameterOffset = 2; // Absolute offset in the SMB message
            d.parameterDisplacement = 0;
            d.dataCount = 4; // Current data count matches total
            d.dataOffset = 10; // Absolute offset in the SMB message
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/ConfiguredGoalSupport.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.cling.invoker.mvnenc.goals;
    
    import java.util.List;
    import java.util.Map;
    import java.util.function.Consumer;
    
    import org.apache.maven.api.services.MessageBuilderFactory;
    import org.apache.maven.cling.invoker.mvnenc.EncryptContext;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java

         * per line (similar to {@code maven.conf}) and {@code '#'} (hash) marked comment lines are allowed. Goals, if
         * present, are appended, to those specified on CLI input, if any.
         */
        Optional<String> atFile();
    
        /**
         * Returns the list of goals and phases to execute.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 8K bytes
    - Click Count (0)
  9. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

            // Verify reserved bytes
            assertEquals(0, dst[1]);
            assertEquals(0, dst[2]);
    
            // Verify total parameter count (4 bytes at position 3)
            assertEquals(100, SMBUtil.readInt4(dst, 3));
    
            // Verify total data count (4 bytes at position 7)
            assertEquals(200, SMBUtil.readInt4(dst, 7));
    
            // Verify max parameter count (4 bytes at position 11)
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.1K bytes
    - Click Count (0)
  10. api/maven-api-plugin/pom.xml

            <artifactId>modello-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>modello-plugin</id>
                <goals>
                  <goal>velocity</goal>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Jun 29 22:37:39 GMT 2025
    - 3.8K bytes
    - Click Count (0)
Back to Top