Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for otherValue (0.09 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"maxField":   "valueThatsVeryLongSee",
    						"otherField": "otherValue",
    					}},
    				applyPatchOperation{
    					"make minField valid, ratcheting old value for maxField",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"minField":   "valuelength13",
    						"maxField":   "valueThatsVeryLongSee",
    						"otherField": "otherValue",
    					}},
    				applyPatchOperation{
    					"make maxField shorter",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. src/net/http/request.go

    		return r.matches[i]
    	}
    	return r.otherValues[name]
    }
    
    // SetPathValue sets name to value, so that subsequent calls to r.PathValue(name)
    // return value.
    func (r *Request) SetPathValue(name, value string) {
    	if i := r.patIndex(name); i >= 0 {
    		r.matches[i] = value
    	} else {
    		if r.otherValues == nil {
    			r.otherValues = map[string]string{}
    		}
    		r.otherValues[name] = value
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top