Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for atAPath (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/testing/conversion.go

    		if err := runtime.Convert_Slice_string_To_string(&values, &out.Param2, s); err != nil {
    			return err
    		}
    	} else {
    		out.Param2 = ""
    	}
    	if values, ok := map[string][]string(*in)["atAPath"]; ok && len(values) > 0 {
    		if err := runtime.Convert_Slice_string_To_string(&values, &out.Path, s); err != nil {
    			return err
    		}
    	} else {
    		out.Path = ""
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 02 06:16:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/testing/types.go

    type SimpleGetOptions struct {
    	metav1.TypeMeta `json:",inline"`
    	Param1          string `json:"param1"`
    	Param2          string `json:"param2"`
    	Path            string `json:"atAPath"`
    }
    
    func (SimpleGetOptions) SwaggerDoc() map[string]string {
    	return map[string]string{
    		"param1": "description for param1",
    		"param2": "description for param2",
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    					Other: "foo",
    				},
    			},
    			takesPath: "atAPath",
    		}
    		simpleRootStorage := GetWithOptionsRootRESTStorage{
    			SimpleTypedStorage: &SimpleTypedStorage{
    				baseType: &genericapitesting.SimpleRoot{}, // a root scoped type
    				item: &genericapitesting.SimpleRoot{
    					Other: "foo",
    				},
    			},
    			takesPath: "atAPath",
    		}
    
    		storage := map[string]rest.Storage{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top