Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for purego (0.1 sec)

  1. 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)
  2. pkg/credentialprovider/plugin/plugin.go

    func (p *pluginProvider) getCachedCredentials(image string) (credentialprovider.DockerConfig, bool, error) {
    	p.Lock()
    	if p.clock.Now().After(p.lastCachePurge.Add(cachePurgeInterval)) {
    		// NewExpirationCache purges expired entries when List() is called
    		// The expired entry in the cache is removed only when Get or List called on it.
    		// List() is called on some interval to remove those expired entries on which Get is never called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. docs/de/docs/deployment/https.md

    Und genau das ist **HTTPS**, es ist einfach **HTTP** innerhalb einer **sicheren TLS-Verbindung**, statt einer puren (unverschlüsselten) TCP-Verbindung.
    
    !!! tip "Tipp"
        Beachten Sie, dass die Verschlüsselung der Kommunikation auf der **TCP-Ebene** und nicht auf der HTTP-Ebene erfolgt.
    
    ### HTTPS-Request
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. 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)
  7. cni/pkg/nodeagent/net.go

    		// an add(sameIPreused) then delete(originalIP).
    		// Which will result in the new pod starting to fail healthchecks.
    		//
    		// Since we purge on restart of CNI, and remove pod IPs from the set on every pod removal/deletion,
    		// we _shouldn't_ get any overwrite/overlap, unless something is wrong and we are asked to add
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/compile/internal/walk/complit.go

    // literal components of composite literals.
    // Dynamic initialization represents non-literals and
    // non-literal components of composite literals.
    // LocalCode initialization represents initialization
    // that occurs purely in generated code local to the function of use.
    // Initialization code is sometimes generated in passes,
    // first static then dynamic.
    type initKind uint8
    
    const (
    	initKindStatic initKind = iota + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. 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)
Back to top