Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 473 for typed (0.24 sec)

  1. src/html/template/doc.go

    embedding in JavaScript contexts.
    
    # Typed Strings
    
    By default, this package assumes that all pipelines produce a plain text string.
    It adds escaping pipeline stages necessary to correctly and safely embed that
    plain text string in the appropriate context.
    
    When a data value is not plain text, you can make sure it is not over-escaped
    by marking it with its type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/runtimeclass/admission.go

    	"k8s.io/apiserver/pkg/admission"
    	genericadmissioninitailizer "k8s.io/apiserver/pkg/admission/initializer"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	nodev1client "k8s.io/client-go/kubernetes/typed/node/v1"
    	nodev1listers "k8s.io/client-go/listers/node/v1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	node "k8s.io/kubernetes/pkg/apis/node"
    	apinodev1 "k8s.io/kubernetes/pkg/apis/node/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    on the way down in updateExprType, or at the end of the type checker run,
    the type (and constant value, if any) is recorded via Info.Types, if present.
    */
    
    type opPredicates map[syntax.Operator]func(Type) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/assignments.go

    		if lhs.typ == nil {
    			lhs.typ = Typ[Invalid]
    		}
    		x.mode = invalid
    		return
    	}
    
    	// If lhs doesn't have a type yet, use the type of x.
    	if lhs.typ == nil {
    		typ := x.typ
    		if isUntyped(typ) {
    			// convert untyped types to default types
    			if typ == Typ[UntypedNil] {
    				check.errorf(x, UntypedNilUse, "use of untyped nil in %s", context)
    				lhs.typ = Typ[Invalid]
    				x.mode = invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/go/types/const.go

    		check.error(atPos(opPos), InvalidConstVal, "constant result is not representable")
    		return
    	}
    
    	// Typed constants must be representable in
    	// their type after each constant operation.
    	// x.typ cannot be a type parameter (type
    	// parameters cannot be constant types).
    	if isTyped(x.typ) {
    		check.representable(x, under(x.typ).(*Basic))
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/model/proxy.go

    )
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    
    const (
    	// SidecarProxy type is used for sidecar proxies in the application containers
    	SidecarProxy NodeType = "sidecar"
    
    	// Router type is used for standalone proxies acting as L7/L4 routers
    	Router NodeType = "router"
    
    	// Waypoint type is used for waypoint proxies
    	Waypoint NodeType = "waypoint"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    	ID ID
    
    	// The operation that computes this value. See op.go.
    	Op Op
    
    	// The type of this value. Normally this will be a Go type, but there
    	// are a few other pseudo-types, see ../types/type.go.
    	Type *types.Type
    
    	// Auxiliary info for this value. The type of this information depends on the opcode and type.
    	// AuxInt is used for integer values, Aux is used for other values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. ReadMe.md

    # Kotlin Programming Language
    
    Welcome to [Kotlin](https://kotlinlang.org/)!   
    It is an open-source, statically typed programming language supported and developed by [JetBrains](https://www.jetbrains.com/) and open-source contributors.
    
    Some handy links:
    
     * [Kotlin Site](https://kotlinlang.org/)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/ops.h

      struct Initializer {
        /// Construct from a scalar value of an arithmetic type or a type that can
        /// be converted to a string (eg. a string literal).
        template <typename T, typename = typename std::enable_if<
                                  std::is_arithmetic<T>::value ||
                                  std::is_convertible<T, std::string>::value>::type>
        Initializer(const T& v) {  // NOLINT(runtime/explicit)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    // identical.
    func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool {
    	if len(xargs) != len(yargs) {
    		return false
    	}
    
    	for i, xa := range xargs {
    		if !Identical(xa, yargs[i]) {
    			return false
    		}
    	}
    
    	return Identical(xorig, yorig)
    }
    
    // Default returns the default "typed" type for an "untyped" type;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top