Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,315 for MethodA (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

    import javax.inject.Inject;
    
    /**
     * Universal APIs that are available for all {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in DSL methods for {@code dependencies} blocks.
     * @implSpec The default implementation of all methods should not be overridden.
     * @implNote Changes to this interface may require changes to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/internal/abi/type.go

    // to describe a non-defined type with no methods.
    type UncommonType struct {
    	PkgPath NameOff // import path; empty for built-in types like int, string
    	Mcount  uint16  // number of methods
    	Xcount  uint16  // number of exported methods
    	Moff    uint32  // offset from this uncommontype to [mcount]Method
    	_       uint32  // unused
    }
    
    func (t *UncommonType) Methods() []Method {
    	if t.Mcount == 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/reflect/badlinkname.go

    func badlinkname_rtype_Len(*rtype) int
    
    //go:linkname badlinkname_rtype_Method reflect.(*rtype).Method
    func badlinkname_rtype_Method(*rtype, int) Method
    
    //go:linkname badlinkname_rtype_MethodByName reflect.(*rtype).MethodByName
    func badlinkname_rtype_MethodByName(*rtype, string) (Method, bool)
    
    //go:linkname badlinkname_rtype_Name reflect.(*rtype).Name
    func badlinkname_rtype_Name(*rtype) string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. test/alias2.go

    func (A1) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    func (A2) m() {} // ERROR "invalid receiver type"
    func (A3) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    func (A4) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    
    type B1 = struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    			// The method set of x must be a subset of the method set
    			// of y or vice versa, and the common methods must unify.
    			xmethods := xset.methods
    			ymethods := yset.methods
    			// The smaller method set must be the subset, if it exists.
    			if len(xmethods) > len(ymethods) {
    				xmethods, ymethods = ymethods, xmethods
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    			// The method set of x must be a subset of the method set
    			// of y or vice versa, and the common methods must unify.
    			xmethods := xset.methods
    			ymethods := yset.methods
    			// The smaller method set must be the subset, if it exists.
    			if len(xmethods) > len(ymethods) {
    				xmethods, ymethods = ymethods, xmethods
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/io/io.go

    }
    
    // ReadWriter is the interface that groups the basic Read and Write methods.
    type ReadWriter interface {
    	Reader
    	Writer
    }
    
    // ReadCloser is the interface that groups the basic Read and Close methods.
    type ReadCloser interface {
    	Reader
    	Closer
    }
    
    // WriteCloser is the interface that groups the basic Write and Close methods.
    type WriteCloser interface {
    	Writer
    	Closer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

     * Information about the artifacts can be accessed via the methods of {@link ComponentGraphResolveState}.</p>
     */
    public interface VariantGraphResolveMetadata extends HasAttributes {
        /**
         * Returns the name for this variant, which is unique for the variants of its owning component.
         *
         * In general, this method should be avoided. The internal engine should not need to know the name of a node and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls0.go

    func (S0) m4 () (x *S0.m4 /* ERROR "S0.m4 is not a type" */ ) { return }
    
    // interfaces may not have any blank methods
    type BlankI interface {
    	_ /* ERROR "methods must have a unique non-blank name" */ ()
    	_ /* ERROR "methods must have a unique non-blank name" */ (float32) int
    	m()
    }
    
    // non-interface types may have multiple blank methods
    type BlankT struct{}
    
    func (BlankT) _() {}
    func (BlankT) _(int) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

          to:
            - operation:
                methods: ["method", "method-prefix-*", "*-suffix-method", "*"]
                hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
                ports: ["80", "90"]
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
                notMethods: ["not-method", "not-method-prefix-*", "*-not-suffix-method", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top