Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for purego (0.21 sec)

  1. src/path/filepath/path.go

    	"io/fs"
    	"os"
    	"slices"
    )
    
    const (
    	Separator     = os.PathSeparator
    	ListSeparator = os.PathListSeparator
    )
    
    // Clean returns the shortest path name equivalent to path
    // by purely lexical processing. It applies the following rules
    // iteratively until no further processing can be done:
    //
    //  1. Replace multiple [Separator] elements with a single one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kube/kclient/client_test.go

    		// List should return empty
    		assert.Equal(t, len(wasm.List("", klabels.Everything())), 0)
    
    		// Now we add the CRD
    		clienttest.MakeCRD(t, c, gvr.WasmPlugin)
    		// This is pretty bad, but purely works around https://github.com/kubernetes/kubernetes/issues/95372
    		// which impacts only the fake client.
    		// Basically if the Create happens between the List and Watch it is lost. But we don't know when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    // resources essentially share the same storage config (as defined by the given storagebackend.Config).
    // It assumes the resources are stored at a path that is purely based on the schema.GroupResource.
    // Users that need flexibility and per resource overrides should use DefaultStorageFactory instead.
    type SimpleStorageFactory struct {
    	StorageConfig storagebackend.Config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    JVM implementations like OpenJDK's Hotspot progressively optimize code during execution.
    Consequently, subsequent builds can be faster purely due to this optimization process.
    
    With the Daemon, perceived build times can drop dramatically between a project's 1^st^ and 10^th^ builds.
    
    === Memory Caching
    
    The Daemon enables in-memory caching across builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/generic-handlers.go

    	"index.html":        {},
    	minioReservedBucket: {},
    }
    
    // Fetch redirect location if urlPath satisfies certain
    // criteria. Some special names are considered to be
    // redirectable, this is purely internal function and
    // serves only limited purpose on redirect-handler for
    // browser requests.
    func getRedirectLocation(r *http.Request) *xnet.URL {
    	resource, err := getResource(r.URL.Path, r.Host, globalDomainNames)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top