Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,313 for clen (0.04 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

            assertThat(lifecycle.getPhases(), hasSize(23));
        }
    
        @Test
        void testCleanLifecycle() {
            final Lifecycle lifecycle = getLifeCycleById("clean");
            assertThat(lifecycle.getId(), is("clean"));
            assertThat(lifecycle.getPhases(), hasSize(3));
        }
    
        @Test
        void testSiteLifecycle() {
            final Lifecycle lifecycle = getLifeCycleById("site");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/runtime/time_test.go

    	var frames []fakeTimeFrame
    	for len(x) != 0 {
    		if len(x) < 4+8+4 {
    			return nil, errors.New("truncated header")
    		}
    		const magic = "\x00\x00PB"
    		if string(x[:len(magic)]) != magic {
    			return nil, errors.New("bad magic")
    		}
    		x = x[len(magic):]
    		time := binary.BigEndian.Uint64(x)
    		x = x[8:]
    		dlen := binary.BigEndian.Uint32(x)
    		x = x[4:]
    		data := string(x[:dlen])
    		x = x[dlen:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 03:40:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            }
            tasks.withType<Delete>().configureEach {
                if (name == "clean${name.capitalize()}") {
                    // do not use 'tasks.named("clean...")' because that realizes the base task to apply the clean rule
                    delete(performanceTestReport)
                    dependsOn("clean${performanceTestReportZipTask.name.capitalize()}")
                }
            }
            return performanceTestReport
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/tests/inferredTaskDep2.sample.conf

    executable: gradle
    args: clean packageFiles2
    expected-output-file: inferredTaskDep2.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildInputFilesConfigUsingTask.sample.conf

    executable: gradle
    args: clean instrumentClasses2
    expected-output-file: incrementalBuildInputFilesConfigUsingTask.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/inferredTaskDependencyWithBuiltBy.sample.conf

    executable: gradle
    args: clean instrumentClassesBuiltBy
    expected-output-file: inferredTaskDependencyWithBuiltBy.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 176 bytes
    - Viewed (0)
  7. .github/workflows/maven_build_itself.yml

                echo "${{ env.TAR_BALL }} does not exist."
                exit 1;
              fi
            env:
              TAR_BALL: apache-maven/target/apache-maven-bin.tar.gz
    
          - name: Clean with Maven
            run: ./mvnw -e -B -V clean
    
          - name: Build again with Maven SNAPSHOT
            shell: bash
            run: |
              set +e
              export PATH=${{ env.TEMP_MAVEN_BIN_DIR }}:$PATH
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleTaskSegmentCalculatorStub.java

    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
     */
    public class LifecycleTaskSegmentCalculatorStub extends DefaultLifecycleTaskSegmentCalculator {
        public static final String clean = "clean";
    
        public static final String aggr = "aggr";
    
        public static final String install = "install";
    
        public LifecycleTaskSegmentCalculatorStub() {
            super(null, null);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. releasenotes/notes/37057.yaml

    issue:
    - 37057
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** new configuration options to `istio-iptables` and `istio-clean-iptables`
      for including/excluding certain user groups from interception of the outgoing traffic
      generated by them.
    
      This feature is intended primarily for use on VMs, where system administrators need
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. util/gradle_integration_tests.sh

    #!/bin/bash
    
    set -eu
    
    ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
    ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -f android
    
    # Gradle Wrapper overwrites some files when it runs.
    # To avoid modifying the Git client, we copy everything we need to another directory.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top