Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Lifecycle (0.2 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    			expectedParsingErr:    errDuplicatedXMLTag,
    			expectedValidationErr: nil,
    		},
    		{ // lifecycle config with no rules
    			inputConfig: `<LifecycleConfiguration>
    		                          </LifecycleConfiguration>`,
    			expectedParsingErr:    nil,
    			expectedValidationErr: errLifecycleNoRule,
    		},
    		{ // lifecycle config with rules having overlapping prefix
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  2. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    Hervé Boutemy <******@****.***> 1489252742 +0100
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 11 17:19:02 GMT 2017
    - 96.7K bytes
    - Viewed (0)
  3. maven-core/src/site/resources/design/2.1-lifecycle-refactor-sequence-diagram.png

    2.1-lifecycle-refactor-sequence-diagram.png...
    PNG Image
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Mar 20 21:40:59 GMT 2007
    - 85.3K bytes
    - Viewed (0)
  4. cmd/erasure-object.go

    				evt := evalActionFromLifecycle(ctx, *lc, rcfg, replcfg, goi)
    				switch evt.Action {
    				case lifecycle.DeleteAllVersionsAction, lifecycle.DelMarkerDeleteAllVersionsAction:
    					// opts.DeletePrefix is used only in the above lifecycle Expiration actions.
    				default:
    					// object has been modified since lifecycle action was previously evaluated
    					isErr = true
    				}
    				if isErr {
    					if goi.VersionID != "" {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

    import org.apache.maven.artifact.handler.ArtifactHandler;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.resolver.filter.ArtifactFilter;
    import org.apache.maven.lifecycle.internal.DefaultProjectArtifactFactory;
    import org.apache.maven.model.Build;
    import org.apache.maven.model.CiManagement;
    import org.apache.maven.model.Contributor;
    import org.apache.maven.model.Dependency;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	},
    	ErrNoSuchBucketLifecycle: {
    		Code:           "NoSuchBucketLifecycle",
    		Description:    "The bucket lifecycle configuration does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNoSuchLifecycleConfiguration: {
    		Code:           "NoSuchLifecycleConfiguration",
    		Description:    "The lifecycle configuration does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrInvalidLifecycleWithObjectLock: {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  7. cmd/erasure-server-pool.go

    		//   }
    		// }
    		objInfo, err := z.GetObjectInfo(ctx, bucket, path.Dir(prefix), ObjectOptions{NoLock: true})
    		if err == nil {
    			if opts.Lifecycle != nil {
    				evt := evalActionFromLifecycle(ctx, *opts.Lifecycle, opts.Retention, opts.Replication.Config, objInfo)
    				if evt.Action.Delete() {
    					globalExpiryState.enqueueByDays(objInfo, evt, lcEventSrc_s3ListObjects)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    	}()
    
    	// Updates must be closed before we return.
    	defer xioutil.SafeClose(updates)
    	var lc *lifecycle.Lifecycle
    
    	// Check if the current bucket has a configured lifecycle policy
    	if globalLifecycleSys != nil {
    		lc, err = globalLifecycleSys.Get(cache.Info.Name)
    		if err == nil && lc.HasActiveRules("") {
    			cache.Info.lifeCycle = lc
    		}
    	}
    
    	// Check if the current bucket has replication configuration
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    			bucket.Methods(http.MethodGet).HandlerFunc(api.GetBucketLifecycleHandler).Queries("lifecycle", "")
    		case "PutBucketLifecycle":
    			bucket.Methods(http.MethodPut).HandlerFunc(api.PutBucketLifecycleHandler).Queries("lifecycle", "")
    		case "DeleteBucketLifecycle":
    			bucket.Methods(http.MethodDelete).HandlerFunc(api.DeleteBucketLifecycleHandler).Queries("lifecycle", "")
    		case "GetBucketLocation":
    			// Register GetBucketLocation handler.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            if (request.isProcessPlugins()) {
                if (lifecycleBindingsInjector == null) {
                    throw new IllegalStateException("lifecycle bindings injector is missing");
                }
    
                // lifecycle bindings injection
                resultModel = lifecycleBindingsInjector.injectLifecycleBindings(resultModel, request, problems);
            }
    
            // dependency management import
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
Back to top