Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for purego (0.16 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. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	}
    	return data, p.err
    }
    
    func (p *PrefixTransformer) GetReadsAndReset() uint64 {
    	return atomic.SwapUint64(&p.reads, 0)
    }
    
    // reproducingTransformer is a custom test-only transformer used purely
    // for testing consistency.
    // It allows for creating predefined objects on TransformFromStorage operations,
    // which allows for precise in time injection of new objects in the middle of
    // read operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/validtype.go

    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    		// // (Note: The valids map could also be allocated locally, once for each
    		// // validType call.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/go/types/validtype.go

    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    		// // (Note: The valids map could also be allocated locally, once for each
    		// // validType call.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/path-params.md

    * Annotations d'API et documentation automatique.
    
    Et vous n'avez besoin de le déclarer qu'une fois.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/internal/trace/generation.go

    	"encoding/binary"
    	"fmt"
    	"io"
    	"slices"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // generation contains all the trace data for a single
    // trace generation. It is purely data: it does not
    // track any parse state nor does it contain a cursor
    // into the generation.
    type generation struct {
    	gen        uint64
    	batches    map[ThreadID][]batch
    	cpuSamples []cpuSample
    	*evTable
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/config/kube/gateway/controller.go

    // gateway-api types into Istio types (Gateway/VirtualService). Future calls to Get/List will return these
    // Istio types. These are not stored in the cluster at all, and are purely internal; they can be seen on /debug/configz.
    // During Reconcile(), the status on all gateway-api types is also tracked. Once completed, if the status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. 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)
Back to top