Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 935 for resume (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            this.projectSelector = new ProjectSelector(); // if necessary switch to DI
        }
    
        @Override
        public Result<ProjectDependencyGraph> build(MavenSession session) {
            try {
                Result<ProjectDependencyGraph> result = sessionDependencyGraph(session);
    
                if (result == null) {
                    final List<MavenProject> projects = getProjectsForMavenReactor(session);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void suspend(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void resume(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; protected void endComponentLifecycl(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public org.codehaus.plexus.MutablePlexusContain...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    g, Throwable); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Suspendable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Suspendable { public abstract void suspend(); public abstract void resume(); } org/codehaus/plexus/PlexusConstants.class package org.codehaus.plexus; public abstract synchronized class PlexusConstants { public static final String IGNORE_CONTAINER_CONFIGURATION = plexus.ignoreContainerConfi; public static final String B...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/ReactorReader.java

        }
    
        /**
         * Copy packaged and attached artifacts from this project to the
         * project local repository.
         * This allows a subsequent build to resume while still being able
         * to locate attached artifacts.
         *
         * @param project the project to copy artifacts from
         */
        private void installIntoProjectLocalRepository(MavenProject project) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        // Pause in step 2.
        step2Waiter.awaitStarted();
    
        // Everything should still be open.
        assertStillOpen(closeable1, closeable2, closeable3, closeable4);
    
        // Cancel step 3, resume step 2, and pause in step 4.
        assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue();
        step2Waiter.awaitReturned();
        step4Waiter.awaitStarted();
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  6. cmd/notification.go

    // ServiceFreeze freezes all S3 API calls when 'freeze' is true,
    // 'freeze' is 'false' would resume all S3 API calls again.
    // NOTE: once a tenant is frozen either two things needs to
    // happen before resuming normal operations.
    //   - Server needs to be restarted 'mc admin service restart'
    //   - 'freeze' should be set to 'false' for this call
    //     to resume normal operations.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 12 18:13:36 GMT 2024
    - 44.5K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    			// Do not need to retry if we can't list objects on source.
    			return err
    		}
    
    		prevObj := ""
    
    		skipReplicate := false
    		for result := range slowCh {
    			result := result
    			if result.Name != prevObj {
    				prevObj = result.Name
    				skipReplicate = result.DeleteMarker && s3Type
    			}
    			if skipReplicate {
    				continue
    			}
    			wk.Take()
    			go func() {
    				defer wk.Give()
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.2.md

      * “kubectl rollout undo” (i.e. rollback) will hang on paused deployments, because
    paused deployments can’t be rolled back (this is expected), and the command
    waits for rollback events to return the result. Users should use “kubectl
    rollout resume” to resume a deployment before rolling back.
      * “kubectl edit <list>” will open the editor multiple times, once for each
    resource in the list.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        // Pause in step 2.
        step2Waiter.awaitStarted();
    
        // Everything should still be open.
        assertStillOpen(closeable1, closeable2, closeable3, closeable4);
    
        // Cancel step 3, resume step 2, and pause in step 4.
        assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue();
        step2Waiter.awaitReturned();
        step4Waiter.awaitStarted();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 74.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void suspend(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void resume(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; protected void endComponentLifecycl(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public org.codehaus.plexus.MutablePlexusContain...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
Back to top