Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for key0 (0.04 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124553](https://github.com/kubernetes/kubernetes/pull/124553), [@pmalek](https://github.com/pmalek)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    	}
    }
    
    // stackContainsLabeled takes a spec like funcname;key=value and matches if the stack has that key
    // and value and has funcname somewhere in the stack.
    func stackContainsLabeled(spec string, count uintptr, stk []*profile.Location, labels map[string][]string) bool {
    	base, kv, ok := strings.Cut(spec, ";")
    	if !ok {
    		panic("no semicolon in key/value spec")
    	}
    	k, v, ok := strings.Cut(kv, "=")
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    		if ev.S3.Bucket.Name != "" && values.Get(peerRESTListenBucket) != "" {
    			if ev.S3.Bucket.Name != values.Get(peerRESTListenBucket) {
    				return false
    			}
    		}
    		return rulesMap.MatchSimple(ev.EventName, ev.S3.Object.Key)
    	})
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    
    	// Process until remote disconnects.
    	// Blocks on upstream (out) congestion.
    	// We have however a dynamic downstream buffer (ch).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top