Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 329 for udpate (0.21 sec)

  1. cmd/erasure.go

    					}
    				}
    				// Collect updates.
    				updates := make(chan dataUsageEntry, 1)
    				var wg sync.WaitGroup
    				wg.Add(1)
    				go func(name string) {
    					defer wg.Done()
    					for update := range updates {
    						select {
    						case <-ctx.Done():
    						case bucketResults <- dataUsageEntryInfo{
    							Name:   name,
    							Parent: dataUsageRoot,
    							Entry:  update,
    						}:
    						}
    					}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 16K bytes
    - Viewed (1)
  2. cmd/metacache.go

    		b += slashSeparator
    	}
    	return b
    }
    
    // update cache with new status.
    // The updates are conditional so multiple callers can update with different states.
    func (m *metacache) update(update metacache) {
    	m.lastUpdate = UTCNow()
    
    	if m.lastHandout.After(m.lastHandout) {
    		m.lastHandout = UTCNow()
    	}
    	if m.status == scanStateStarted && update.status == scanStateSuccess {
    		m.ended = UTCNow()
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5K bytes
    - Viewed (0)
  3. cmd/admin-handlers-idp-config.go

    	ctx := r.Context()
    
    	addOrUpdateIDPHandler(ctx, w, r, false)
    }
    
    // UpdateIdentityProviderCfg: updates an existing IDP config for openid/ldap.
    //
    // POST <admin-prefix>/idp-cfg/openid/dex1 -> update named config `dex1`
    //
    // POST <admin-prefix>/idp-cfg/openid/_ -> update (default) named config `_`
    func (a adminAPIHandlers) UpdateIdentityProviderCfg(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users_test.go

    	svcAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Attempt to update the policy on the service account.
    	err = svcAdmClient.UpdateServiceAccount(ctx, cr.AccessKey,
    		madmin.UpdateServiceAccountReq{
    			NewPolicy: fullS3PolicyBytes,
    		})
    
    	if err == nil {
    		c.Fatalf("service account should not be able to update policy on itself")
    	} else if !strings.Contains(err.Error(), "Access Denied") {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 12 16:36:16 GMT 2024
    - 45.7K bytes
    - Viewed (0)
  5. cmd/object-api-interface.go

    	// being 'replaced'
    	// Note: Used only when a tiered object is being expired.
    	SkipFreeVersion bool
    
    	MetadataChg           bool                  // is true if it is a metadata update operation.
    	EvalRetentionBypassFn EvalRetentionBypassFn // only set for enforcing retention bypass on DeleteObject.
    
    	FastGetObjInfo bool // Only for S3 Head/Get Object calls for now
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 20 09:05:54 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  6. internal/bucket/object/lock/lock.go

    	return &Config{
    		ObjectLockEnabled: Enabled,
    	}
    }
    
    // RetentionDate is a embedded type containing time.Time to unmarshal
    // Date in Retention
    type RetentionDate struct {
    	time.Time
    }
    
    // UnmarshalXML parses date from Retention and validates date format
    func (rDate *RetentionDate) UnmarshalXML(d *xml.Decoder, startElement xml.StartElement) error {
    	var dateStr string
    	err := d.DecodeElement(&dateStr, &startElement)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    	// should skip healing the disk
    	SkipHealing bool
    
    	// Active lifecycle, if any on the bucket
    	lifeCycle *lifecycle.Lifecycle `msg:"-"`
    
    	// optional updates channel.
    	// If set updates will be sent regularly to this channel.
    	// Will not be closed when returned.
    	updates     chan<- dataUsageEntry `msg:"-"`
    	replication replicationConfig     `msg:"-"`
    }
    
    func (e *dataUsageEntry) addSizes(summary sizeSummary) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
  8. cmd/admin-handlers.go

    	if objectAPI == nil {
    		return
    	}
    
    	if globalInplaceUpdateDisabled || currentReleaseTime.IsZero() {
    		// if MINIO_UPDATE=off - inplace update is disabled, mostly in containers.
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    	vars := mux.Vars(r)
    	updateURL := vars["updateURL"]
    	mode := getMinioMode()
    	if updateURL == "" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  9. docs/bucket/replication/DESIGN.md

    of `--older-than` needs to be used to trigger re-syncing of previously replicated objects. This command generates a ResetID which is a unique UUID saved to the remote target config along with the applicable date(defaults to time of initiating the reset). All objects created prior to this date are eligible for re-replication if existing object replication is enabled for the replication rule the object satisfies. At the time of completion of replication, `x-minio-internal-replication-reset-arn:<arn>`...
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	modTime := opts.MTime
    	if opts.MTime.IsZero() {
    		modTime = UTCNow()
    	}
    
    	onlineDisks, partsMetadata = shuffleDisksAndPartsMetadata(onlineDisks, partsMetadata, fi)
    
    	// Fill all the necessary metadata.
    	// Update `xl.meta` content on each disks.
    	for index := range partsMetadata {
    		partsMetadata[index].Fresh = true
    		partsMetadata[index].ModTime = modTime
    		partsMetadata[index].Metadata = userDefined
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 43K bytes
    - Viewed (0)
Back to top