Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for mytype (0.09 sec)

  1. src/cmd/compile/internal/typecheck/type.go

    Matthew Dempsky <******@****.***> 1651619260 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 18:49:25 UTC 2022
    - 178 bytes
    - Viewed (0)
  2. src/sync/atomic/type.go

    var _ = &Pointer[int]{}
    
    // A Pointer is an atomic pointer of type *T. The zero value is a nil *T.
    type Pointer[T any] struct {
    	// Mention *T in a field to disallow conversion between Pointer types.
    	// See go.dev/issue/56603 for more details.
    	// Use *T, not T, to avoid spurious recursive type definition errors.
    	_ [0]*T
    
    	_ noCopy
    	v unsafe.Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeUtils.java

    import org.objectweb.asm.Type;
    
    import javax.lang.model.element.ExecutableElement;
    import javax.lang.model.type.TypeMirror;
    
    public class TypeUtils {
        public static Type extractType(TypeMirror typeMirror) {
            return typeMirror.accept(new TypeMirrorToType(), null);
        }
    
        public static Type extractReturnType(ExecutableElement methodElement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    ' Boundaries
    ' ##################################
    
    !define Boundary(e_alias, e_label) rectangle "==e_label" <<boundary>> as e_alias
    !define Boundary(e_alias, e_label, e_type) rectangle "==e_label [e_type]" <<boundary>> as e_alias
    
    ' Relationship
    ' ##################################
    
    !define Rel_(e_alias1, e_alias2, e_label, e_direction="") e_alias1 e_direction e_alias2 : "===e_label"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	}
    
    	found := false
    	returnTypes := expressionAccessor.ReturnTypes()
    	for _, returnType := range returnTypes {
    		if ast.OutputType() == returnType || cel.AnyType == returnType {
    			found = true
    			break
    		}
    	}
    	if !found {
    		var reason string
    		if len(returnTypes) == 1 {
    			reason = fmt.Sprintf("must evaluate to %v", returnTypes[0].String())
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

            1. Set _name = "MatMul"
            2. For each TF attribute, split it into two attributes, one for name of
               the TF attribute, and the other for the type and value of the
               attribute value. Attribute value is a string with the format of
               "type$val", where type can be "bool", "string", "tfdtype", "tfshape",
               "tftensor".
               The value serialization format can be found in attr_util.h.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    func (v *ExtraMappingExpression) ReturnTypes() []*celgo.Type {
    	// return types is only used for validation. The claims variable that's available
    	// to the claim mapping expressions is a map[string]interface{}, so we can't
    	// really know what the return type is during compilation. Strict type checking
    	// is done during evaluation.
    	return []*celgo.Type{celgo.AnyType}
    }
    
    var _ ExpressionAccessor = &UserValidationCondition{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    			// underlying; if the underlying type is unrestricted there must be an
    			// element of the type set that violates one of the arg type checks
    			// below, so we can safely return false here.
    
    			if m.t == anyType { // anyType must have already been handled.
    				panic("unexpected printfArgType")
    			}
    			return false
    		}
    
    		// Only report a reason if typ is the argument type, otherwise it won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractCallInterceptor.java

            MethodHandle spreader = original.asSpreader(Object[].class, original.type().parameterCount());
            MethodHandle decorated = MethodHandles.insertArguments(INTERCEPTOR, 0, this, spreader, flags, caller.lookupClass().getName());
            return decorated.asCollector(Object[].class, original.type().parameterCount()).asType(original.type());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeref.go

    	return common.NewObjectVal(r, fields)
    }
    
    // CELType returns the type. The returned type is of TypeType type.
    func (r *TypeRef) CELType() *types.Type {
    	return r.celTypeType
    }
    
    // Field looks up the field by name.
    // This is the unstructured version that allows any name as the field name.
    // The returned field is of DynType type.
    func (r *TypeRef) Field(name string) (*types.FieldType, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top