Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for Types (0.07 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    				// If named == typed we must have parameters that have no types,
    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = end // position error at closing ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    // Done must be called for pod returned by Pop. This allows the queue to
    // keep track of which pods are currently being processed.
    func (p *PriorityQueue) Done(pod types.UID) {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    
    	p.done(pod)
    }
    
    func (p *PriorityQueue) done(pod types.UID) {
    	if !p.isSchedulingQueueHintEnabled {
    		// do nothing if schedulingQueueHint is disabled.
    		// In that case, we don't have inFlightPods and inFlightEvents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    func (s *peerRESTServer) GetMetricsHandler(v *grid.URLValues) (*grid.JSON[madmin.RealtimeMetrics], *grid.RemoteErr) {
    	values := v.Values()
    	var types madmin.MetricType
    	if t, _ := strconv.ParseUint(values.Get(peerRESTMetricsTypes), 10, 64); t != 0 {
    		types = madmin.MetricType(t)
    	} else {
    		types = madmin.MetricsAll
    	}
    
    	diskMap := make(map[string]struct{})
    	for _, disk := range values[peerRESTDisk] {
    		diskMap[disk] = struct{}{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/Region.h"  // from @llvm-project
    #include "mlir/IR/SymbolTable.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    	. "github.com/onsi/gomega"
    	"go.uber.org/atomic"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/structpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    	"k8s.io/apimachinery/pkg/types"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SETBCR [2] (CMPconst [0] a:(AND y z))) && a.Uses == 1 => (SETBCR [2] (Select1 <types.TypeFlags> (ANDCC y z )))
    
    (SETBC [2] (CMPconst [0] o:(OR y z))) && o.Uses == 1 => (SETBC [2] (Select1 <types.TypeFlags> (ORCC y z )))
    (SETBCR [2] (CMPconst [0] o:(OR y z))) && o.Uses == 1 => (SETBCR [2] (Select1 <types.TypeFlags> (ORCC y z )))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

          : call_op_(call_op) {}
    
      func::CallOp call_op_;
    };
    
    // Matches the pattern for quantized convolution op and rewrites it to use
    // uniform quantized types.
    //
    // Currently assumes asymmetric per-tensor quantization for activations and
    // symmetric per-channel quantization for filters.
    //
    // This pattern represents the following derived equation, where:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The `from()` configuration is far more flexible.
    
    Not only does `from()` accept multiple arguments, it also allows several different types of argument.
    For example, some of the most common types are:
    
    * A `String` — treated as a file path or, if it starts with "file://", a file URI
    * A `File` — used as a file path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    func (s *regAllocState) compatRegs(t *types.Type) regMask {
    	var m regMask
    	if t.IsTuple() || t.IsFlags() {
    		return 0
    	}
    	if t.IsFloat() || t == types.TypeInt128 {
    		if t.Kind() == types.TFLOAT32 && s.f.Config.fp32RegMask != 0 {
    			m = s.f.Config.fp32RegMask
    		} else if t.Kind() == types.TFLOAT64 && s.f.Config.fp64RegMask != 0 {
    			m = s.f.Config.fp64RegMask
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		hasReturnType = true
    		st.advance(1)
    	}
    	var returnType AST
    	if hasReturnType {
    		returnType = st.demangleType(false)
    	}
    	types := st.parmlist(explicitObjectParameter)
    	return &FunctionType{
    		Return:       returnType,
    		Args:         types,
    		ForLocalName: false, // may be set later in encoding
    	}
    }
    
    // arrayType parses:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top