Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for Describer (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

            return describers.stream()
                .filter(describer -> describer.canDescribeFailure(failure))
                .findFirst()
                .map(describer -> describer.describeFailure(failure, schema))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    func (b *B) Why() error   { return nil }
    func (c *C) What() string { return "float64" }
    
    func i_am_dead(c C) {
    	var d describer = &c
    	println(d.What())
    }
    
    func example(a A, b B) describer {
    	if b == 1 {
    		return &a
    	}
    	return &b
    }
    
    func ouch(a any, what string) string {
    	cv := reflect.ValueOf(a).MethodByName(what).Call(nil)
    	return cv[0].String()
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    //
    // The protocol required by 'go vet -vettool=...' is that the tool must support:
    //
    //	-flags          describe flags in JSON
    //	-V=full         describe executable for build caching
    //	foo.cfg         perform separate modular analyze on the single
    //	                unit described by a JSON config file foo.cfg.
    func Main(analyzers ...*analysis.Analyzer) {
    	progname := filepath.Base(os.Args[0])
    	log.SetFlags(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typeset.go

    // implied by the methods and the type set described by the terms and the
    // comparable bit. To test whether a type is included in a type set
    // ("implements" relation), the type must implement all methods _and_ be
    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/go/types/typeset.go

    // implied by the methods and the type set described by the terms and the
    // comparable bit. To test whether a type is included in a type set
    // ("implements" relation), the type must implement all methods _and_ be
    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/reflect/abi.go

    )
    
    // abiStep represents an ABI "instruction." Each instruction
    // describes one part of how to translate between a Go value
    // in memory and a call frame.
    type abiStep struct {
    	kind abiStepKind
    
    	// offset and size together describe a part of a Go value
    	// in memory.
    	offset uintptr
    	size   uintptr // size in bytes of the part
    
    	// These fields describe the ABI side of the translation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    documentation viewers (such as godoc), batch pipelines for large code
    bases, and so on.
    
    # Analyzer
    
    The primary type in the API is [Analyzer]. An Analyzer statically
    describes an analysis function: its name, documentation, flags,
    relationship to other analyzers, and of course, its logic.
    
    To define an analysis, a user declares a (logically constant) variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // The handling of facts in the analysis system parallels the handling
    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    // compiler of package Q need only load one export data file per direct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	EndPort *int32 `json:"endPort,omitempty" protobuf:"bytes,3,opt,name=endPort"`
    }
    
    // IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed
    // to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs
    // that should not be included within this rule.
    type IPBlock struct {
    	// cidr is a string representing the IPBlock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    message PodSchedulingContext {
      // Standard object metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec describes where resources for the Pod are needed.
      optional PodSchedulingContextSpec spec = 2;
    
      // Status describes where resources for the Pod can be allocated.
      // +optional
      optional PodSchedulingContextStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top