Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,279 for clean (0.44 sec)

  1. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 489
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.clean assembleDebug with clean transforms cache",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 1516
      }, {
        "testProject" : "nowInAndroidBuild",
        "linux" : 3400
      }, {
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  2. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

       *     1
       *     100
       *     2
       *
       *     CLEAN 3400330d1dfc7f3f7f4b8d4d803dfcf6 832 21054
       *     DIRTY 335c4c6028171cfddfbaae1a9c313c52
       *     CLEAN 335c4c6028171cfddfbaae1a9c313c52 3934 2342
       *     REMOVE 335c4c6028171cfddfbaae1a9c313c52
       *     DIRTY 1ab96a171faeeee38496d8b330771a7a
       *     CLEAN 1ab96a171faeeee38496d8b330771a7a 1600 234
       *     READ 335c4c6028171cfddfbaae1a9c313c52
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 34.7K bytes
    - Viewed (0)
  3. Jenkinsfile

    def buildOs = 'linux'
    def buildJdk = '17'
    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17', '21']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node(jenkinsEnv.nodeSelection(osNode)) {
        dir('build') {
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

        // Write metadata to the end of the file.
        writeMetadata(upstreamSize)
        file!!.channel.force(false)
    
        // Once everything else is in place we can swap the dirty header for a clean one.
        writeHeader(PREFIX_CLEAN, upstreamSize, metadata.size.toLong())
        file!!.channel.force(false)
    
        // This file is complete.
        synchronized(this@Relay) {
          complete = true
        }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  5. 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);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

            last = null;
          }
        };
      }
    
      @Override
      public Iterator<E> iterator() {
        return Multisets.iteratorImpl(this);
      }
    
      @Override
      public void clear() {
        countMap.clear();
      }
    
      @WeakOuter
      private class EntrySet extends AbstractMultiset<E>.EntrySet {
        @Override
        ConcurrentHashMultiset<E> multiset() {
          return ConcurrentHashMultiset.this;
        }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  7. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

                    "GRADLE_RUNNER",
                    "KILL_ALL_GRADLE_PROCESSES",
                    "CLEAN_UP_GIT_UNTRACKED_FILES_AND_DIRECTORIES",
                    "GRADLE_RETRY_RUNNER",
                    "KILL_PROCESSES_STARTED_BY_GRADLE",
                    "CHECK_CLEAN_M2_ANDROID_USER_HOME"
                ),
                steps.items.map(BuildStep::name)
            )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

    public class LifecycleExecutionPlanCalculatorStub implements LifecycleExecutionPlanCalculator {
        // clean
    
        public static final MojoDescriptor PRE_CLEAN = createMojoDescriptor("pre-clean");
    
        public static final MojoDescriptor CLEAN = createMojoDescriptor("clean");
    
        public static final MojoDescriptor POST_CLEAN = createMojoDescriptor("post-clean");
    
        // default (or at least some of them)
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/TaskSegment.java

    /**
     * Describes the required task segment as provided on the maven command line; i.e. "clean jetty:run install"
     *
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public final class TaskSegment {
    
        // Can be both "LifeCycleTask" (clean/install) and "GoalTask" (org.mortbay.jetty:maven-jetty-plugin:6.1.19:run)
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 2K bytes
    - Viewed (0)
  10. cni/test/install_k8s_test.go

    			resultFileName:         "00-minikube_cni.conflist",
    			expectedOutputFile:     testDataDir + "/expected/minikube_cni.conflist.expected",
    			expectedPostCleanFile:  testDataDir + "/expected/minikube_cni.conflist.clean",
    			cniConfDirOrderedFiles: []string{"minikube_cni.conf"},
    		},
    		{
    			name:                   "First file with pre-plugins--.conflist",
    			chainedCNIPlugin:       true,
    			resultFileName:         "00-calico.conflist",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jul 27 18:01:48 GMT 2022
    - 8K bytes
    - Viewed (0)
Back to top