Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 223 for typed (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. 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)
  10. pilot/pkg/credentials/kube/secrets.go

    	// We only care about TLS certificates and docker config for Wasm image pulling.
    	// Unfortunately, it is not as simple as selecting type=kubernetes.io/tls and type=kubernetes.io/dockerconfigjson.
    	// Because of legacy reasons and supporting an extra ca.crt, we also support generic types.
    	// Its also likely users have started to use random types and expect them to continue working.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top