Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for checkDep (0.17 sec)

  1. staging/src/k8s.io/api/admission/v1/types.go

    type PatchType string
    
    // PatchType constants.
    const (
    	PatchTypeJSONPatch PatchType = "JSONPatch"
    )
    
    // Operation is the type of resource operation being checked for admission control
    type Operation string
    
    // Operation constants
    const (
    	Create  Operation = "CREATE"
    	Update  Operation = "UPDATE"
    	Delete  Operation = "DELETE"
    	Connect Operation = "CONNECT"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/go/types/example_test.go

    	// method (*temperature.Celsius) String() string
    	//
    	// Method set of temperature.S:
    	// MethodSet {}
    }
    
    // ExampleInfo prints various facts recorded by the type checker in a
    // types.Info struct: definitions of and references to each named object,
    // and the type, value, and mode of every expression in the package.
    func ExampleInfo() {
    	// Parse a single source file.
    	const input = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/sync/atomic/type.go

    // See https://golang.org/issues/8005#issuecomment-190753527
    // for details.
    //
    // Note that it must not be embedded, due to the Lock and Unlock methods.
    type noCopy struct{}
    
    // Lock is a no-op used by -copylocks checker from `go vet`.
    func (*noCopy) Lock()   {}
    func (*noCopy) Unlock() {}
    
    // align64 may be added to structs that must be 64-bit aligned.
    // This struct is recognized by a special case in the compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. docs/en/docs/features.md

    * Validate **complex structures**:
        * Use of hierarchical Pydantic models, Python `typing`’s `List` and `Dict`, etc.
        * And validators allow complex data schemas to be clearly and easily defined, checked and documented as JSON Schema.
        * You can have deeply **nested JSON** objects and have them all validated and annotated.
    * **Extensible**:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top