Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for Extract (0.59 sec)

  1. cmd/bucket-handlers.go

    		lengthRange := postPolicyForm.Conditions.ContentLengthRange
    		if lengthRange.Valid {
    			hashReader.SetExpectedMin(lengthRange.Min)
    			hashReader.SetExpectedMax(lengthRange.Max)
    		}
    	}
    
    	// Extract metadata to be saved from received Form.
    	metadata := make(map[string]string)
    	err = extractMetadataFromMime(ctx, textproto.MIMEHeader(formValues), metadata)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    func (check *Checker) incomparableCause(typ Type) string {
    	switch under(typ).(type) {
    	case *Slice, *Signature, *Map:
    		return check.kindString(typ) + " can only be compared to nil"
    	}
    	// see if we can extract a more specific error
    	var cause string
    	comparable(typ, true, nil, func(format string, args ...interface{}) {
    		cause = check.sprintf(format, args...)
    	})
    	return cause
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    		if oldR&r == 0 {
    			if parent.Func.pass.debug > 2 {
    				parent.Func.Warnl(parent.Pos, "unsat %s %s %s", v, w, r)
    			}
    			ft.unsat = true
    			return
    		}
    	}
    
    	// Extract bounds when comparing against constants
    	if v.isGenericIntConst() {
    		v, w = w, v
    		r = reverseBits[r]
    	}
    	if v != nil && w.isGenericIntConst() {
    		// Note: all the +1/-1 below could overflow/underflow. Either will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    func (check *Checker) incomparableCause(typ Type) string {
    	switch under(typ).(type) {
    	case *Slice, *Signature, *Map:
    		return check.kindString(typ) + " can only be compared to nil"
    	}
    	// see if we can extract a more specific error
    	var cause string
    	comparable(typ, true, nil, func(format string, args ...interface{}) {
    		cause = check.sprintf(format, args...)
    	})
    	return cause
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    	// Masks to match opcodes
    	MASK_PLD_PFX  = 0xfff70000
    	MASK_PLD_SFX  = 0xfc1f0000 // Also checks RA = 0 if check value is OP_PLD_SFX.
    	MASK_PLD_RT   = 0x03e00000 // Extract RT from the pld suffix.
    	MASK_OP_LD    = 0xfc000003
    	MASK_OP_ADDIS = 0xfc000000
    )
    
    // Generate a stub to call between TOC and NOTOC functions. See genpltstub for more details about calling stubs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	// Check and remove package qualifier.
    	n := len("runtime.")
    	if len(name) <= n || name[:n] != "runtime." {
    		return false
    	}
    	name = name[n:]
    	rcvr := ""
    
    	// Extract receiver type, if any.
    	// For example, runtime.(*Func).Entry
    	i := len(name) - 1
    	for i >= 0 && name[i] != '.' {
    		i--
    	}
    	if i >= 0 {
    		rcvr = name[:i]
    		name = name[i+1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		if !f {
    			continue
    		}
    		if classInfo.disableRouteGeneration {
    			// We found it, but don't want to handle this class
    			continue
    		}
    
    		servers := []*istio.Server{}
    
    		// Extract the addresses. A gateway will bind to a specific Service
    		gatewayServices, err := extractGatewayServices(r.GatewayResources, kgw, obj, classInfo)
    		if len(gatewayServices) == 0 && err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        // The expressions help a lot, but we need a clean to pick up a directory of POMs, automatically load
        // them into a resolver, create the expression to extract the data to validate the Model, and the URI
        // to validate the properties. We also need a way to navigate from the Tex specification documents to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    	// gcmarkBits will be 8-byte aligned, so we don't have to
    	// worry about edge cases, irrelevant bits will simply be zero.
    	for i := uintptr(0); i < bytes; i += 8 {
    		// Extract 64 bits from the byte pointer and get a OnesCount.
    		// Note that the unsafe cast here doesn't preserve endianness,
    		// but that's OK. We only care about how many bits are 1, not
    		// about the order we discover them in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      //   1. SC forward pass ("forward_ops")
      //   2. TC forward/backward pass ("core_tput_ops")
      //   3. SC backward pass ("backward_ops")
      //   4. Loop counter updates ("non_tpu_ops")
      //
      // Next, extract the original conditional function which we'll use to
      // kick off the pre-loop pipelining steps.
      // are just the operands passed to the original WhileOp.
      func::FuncOp orig_cond_func = orig_while_op.cond_function();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top