Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for id_map (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		// DeleteOptions does not have these fields.
    		delete(inMap, "fieldManager")
    		delete(inMap, "fieldValidation")
    
    		// UpdateOptions does not have these fields.
    		delete(outMap, "gracePeriodSeconds")
    		delete(outMap, "preconditions")
    		delete(outMap, "orphanDependents")
    		delete(outMap, "propagationPolicy")
    
    		// Compare the results.
    		inBytes, err = json.Marshal(inMap)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    		poolsMatches := re.FindAllStringSubmatch(poolsArgs, -1)
    
    		anonPools = make([]string, len(poolsMatches))
    		idxMap := map[int]string{
    			1: "spfx",
    			3: "ssfx",
    		}
    		for pi, poolsMatch := range poolsMatches {
    			// Replace the server prefix/suffix with anonymized ones
    			for idx, lbl := range idxMap {
    				if len(poolsMatch[idx]) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    				if egress.Port.Number == 0 {
    					if _, found := udsMap[bind]; found {
    						errs = AppendValidation(errs, fmt.Errorf("sidecar: unix domain socket values for listeners must be unique"))
    					}
    					udsMap[bind] = struct{}{}
    				} else {
    					if portMap.Contains(egress.Port.Number) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top