Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for predefined (0.27 sec)

  1. docs/en/docs/release-notes.md

        * Add support for enumerations in *path operation* parameters. New documentation: [Path Parameters: Predefined values](https://fastapi.tiangolo.com/tutorial/path-params/#predefined-values).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	Spec PodSpec
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodTemplate describes a template for creating copies of a predefined pod.
    type PodTemplate struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// Template defines the pods that will be created from this pod template
    	// +optional
    	Template PodTemplateSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (PodStatusResult) SwaggerDoc() map[string]string {
    	return map_PodStatusResult
    }
    
    var map_PodTemplate = map[string]string{
    	"":         "PodTemplate describes a template for creating copies of a predefined pod.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

          - name: superfluous-else
          - name: modifies-parameter
          - name: unreachable-code
          - name: struct-tag
          - name: constant-logical-expr
          - name: bool-literal-in-expr
          - name: redefines-builtin-id
          - name: imports-blacklist
          - name: range-val-in-closure
          - name: range-val-address
          - name: waitgroup-by-value
          - name: atomic
          - name: call-to-gc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh.go

    	// We want to keep semantics that all fields are overrides, except proxy config is a merge. This allows
    	// decent customization while also not requiring users to redefine the entire proxy config if they want to override
    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    Ideally, the plugin implementation does not need to ask the user for the coordinates of that dependency - it can simply predefine a sensible default version.
    
    Let’s look at an example of a plugin that downloads files containing data for further processing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional PodStatus status = 2;
    }
    
    // PodTemplate describes a template for creating copies of a predefined pod.
    message PodTemplate {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.0
    
    // PodTemplate describes a template for creating copies of a predefined pod.
    type PodTemplate struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. src/flag/flag.go

    	flag := &Flag{name, usage, value, value.String()}
    	_, alreadythere := f.formal[name]
    	if alreadythere {
    		var msg string
    		if f.name == "" {
    			msg = f.sprintf("flag redefined: %s", name)
    		} else {
    			msg = f.sprintf("%s flag redefined: %s", f.name, name)
    		}
    		panic(msg) // Happens only if flags are declared with identical names
    	}
    	if pos := f.undef[name]; pos != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_test.go

    				virtualServiceWithNestedWildcardHost,
    				virtualServiceWithGoogleWildcardHost,
    			},
    			Services: []*model.Service{exampleWildcardService, exampleNestedWildcardService},
    		})
    
    		// Redefine the service registry for this test
    		serviceRegistry := map[host.Name]*model.Service{
    			"*.example.org":             exampleWildcardService,
    			"goodbye.hello.example.org": exampleNestedWildcardService,
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top