Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 330 for purged (0.11 sec)

  1. internal/http/headers.go

    	// Header indicates if the delete marker should be preserved by client
    	MinIOSourceDeleteMarker = "x-minio-source-deletemarker"
    
    	// Header indicates if the delete marker version needs to be purged.
    	MinIOSourceDeleteMarkerDelete = "x-minio-source-deletemarker-delete"
    
    	// Header indicates permanent delete replication status.
    	MinIODeleteReplicationStatus = "X-Minio-Replication-Delete-Status"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/wasm/cache_test.go

    			},
    			wantFileName:    ociWasmFile,
    			wantVisitServer: false,
    		},
    		{
    			name: "purge OCI image on expiry",
    			initialCachedModules: map[moduleKey]cacheEntry{
    				{name: moduleNameFromURL(ociURLWithTag) + "-purged", checksum: dockerImageDigest}: {
    					modulePath:      ociWasmFile,
    					referencingURLs: sets.New(ociURLWithTag),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. pkg/wasm/cache.go

    		ce.last = time.Now()
    		cacheHit = true
    		c.updateChecksum(key)
    		return ce, key.checksum
    	}
    	return nil, key.checksum
    }
    
    // Purge periodically clean up the stale Wasm modules local file and the cache map.
    func (c *LocalFileCache) purge() {
    	ticker := time.NewTicker(c.PurgeInterval)
    	defer ticker.Stop()
    	for {
    		select {
    		case <-ticker.C:
    			c.mux.Lock()
    			for k, m := range c.modules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    // Provides information about the final state of Rename()
    //   - on xl.meta (array of versions) on disk to check for version disparity
    //   - on rewrite dataDir on disk that must be additionally purged
    //     only after as a 2-phase call, allowing the older dataDir to
    //     hang-around in-case we need some form of recovery.
    type RenameDataResp struct {
    	Sign       []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. docs/sts/ldap.md

    - find accounts (user DNs) that have been removed; any active STS credentials or MinIO service accounts belonging to these users are purged.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. cmd/erasure-multipart.go

    // AbortMultipartUpload - aborts an ongoing multipart operation
    // signified by the input uploadID. This is an atomic operation
    // doesn't require clients to initiate multiple such requests.
    //
    // All parts are purged from all disks and reference to the uploadID
    // would be removed from the system, rollback is not possible on this
    // operation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    		return false, nil
    	}
    
    	// namespace controller does not want the garbage collector to insert the orphan finalizer since it calls
    	// resource deletions generically.  it will ensure all resources in the namespace are purged prior to releasing
    	// namespace itself.
    	background := metav1.DeletePropagationBackground
    	opts := metav1.DeleteOptions{PropagationPolicy: &background}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. operator/cmd/mesh/uninstall.go

      
      # Uninstall all control planes and shared resources
      istioctl uninstall --purge`,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if uiArgs.revision == "" && manifest.GetValueForSetFlag(uiArgs.set, "revision") == "" && uiArgs.filename == "" && !uiArgs.purge {
    				return fmt.Errorf("at least one of the --revision (or --set revision=<revision>), --filename or --purge flags must be set")
    			}
    			if len(args) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. cmd/batch-expire.go

    	Size          BatchJobSizeFilter  `yaml:"size" json:"size"`
    	Type          string              `yaml:"type" json:"type"`
    	Name          string              `yaml:"name" json:"name"`
    	Purge         BatchJobExpirePurge `yaml:"purge" json:"purge"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobExpireFilter{}
    
    // UnmarshalYAML - BatchJobExpireFilter extends unmarshal to extract line, col
    // information
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_fr.properties

    labels.supported_search_web	=	Web
    labels.supported_search_none	=	Indisponible
    labels.purge_search_log_day	=	Purger le journal de recherche avant
    labels.purge_job_log_day	=	Purger le journal des tâches avant
    labels.purge_user_info_day	=	Purger le journal utilisateur avant
    labels.purge_by_bots	=	Nom des robots pour la purge
    labels.log_level	=	Niveau de journalisation
    labels.csv_file_encoding	=	Encodage pour CSV
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top