Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 286 for typed (0.46 sec)

  1. src/runtime/mbarrier.go

    	}
    	return typedslicecopy(elemType, dst.array, dst.len, src.array, src.len)
    }
    
    // typedmemclr clears the typed memory at ptr with type typ. The
    // memory at ptr must already be initialized (and hence in type-safe
    // state). If the memory is being initialized for the first time, see
    // memclrNoHeapPointers.
    //
    // If the caller knows that typ has pointers, it can alternatively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    		}
    	}
    	return false
    }
    
    // MergeAnyWithAny merges a given any typed message into the given Any typed message by dynamically inferring the
    // type of Any
    func MergeAnyWithAny(dst *anypb.Any, src *anypb.Any) (*anypb.Any, error) {
    	// Assuming that Pilot is compiled with this type [which should always be the case]
    	var err error
    
    	// get an object of type used by this message
    	dstX, err := dst.UnmarshalNew()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    	EndpointReconcilerType reconcilers.Type
    
    	// RepairServicesInterval interval used by the repair loops for
    	// the Services NodePort and ClusterIP resources
    	RepairServicesInterval time.Duration
    }
    
    // Config defines configuration for the master
    type Config struct {
    	ControlPlane controlplaneapiserver.Config
    	Extra
    }
    
    type completedConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    shared data structures referenced by multiple facts is preserved.
    
    The Pass type has functions to import and export facts,
    associated either with an object or with a package:
    
    	type Pass struct {
    		...
    		ExportObjectFact func(types.Object, Fact)
    		ImportObjectFact func(types.Object, Fact) bool
    
    		ExportPackageFact func(fact Fact)
    		ImportPackageFact func(*types.Package, Fact) bool
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/go/types/assignments.go

    // This file implements initialization and assignment checks.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	. "internal/types/errors"
    	"strings"
    )
    
    // assignment reports whether x can be assigned to a variable of type T,
    // if necessary by attempting to convert untyped values to the appropriate
    // type. context describes the context in which the assignment takes place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

        }
    
        def "can append array of types"() {
            when:
            formatter.node("thing ")
            formatter.appendTypes(Class, Number, String)
    
            then:
            formatter.toString() == toPlatformLineSeparators("thing (Class, Number, String)")
        }
    
        def "can append empty array of types"() {
            when:
            formatter.node("thing ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/walk/range.go

    		ptr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, hs)
    		ptr.SetBounded(true)
    		huVal := ir.NewConvExpr(base.Pos, ir.OCONVNOP, types.Types[types.TUNSAFEPTR], ptr)
    		huVal = ir.NewConvExpr(base.Pos, ir.OCONVNOP, types.Types[types.TUINTPTR], huVal)
    		hu := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TUINTPTR])
    		init = append(init, ir.NewAssignStmt(base.Pos, hu, huVal))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top