Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for extractID (0.44 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    func mustTypecheck(src string, conf *Config, info *Info) *Package {
    	pkg, err := typecheck(src, conf, info)
    	if err != nil {
    		panic(err) // so we don't need to pass *testing.T
    	}
    	return pkg
    }
    
    // pkgName extracts the package name from src, which must contain a package header.
    func pkgName(src string) string {
    	const kw = "package "
    	if i := strings.Index(src, kw); i >= 0 {
    		after := src[i+len(kw):]
    		n := len(after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          state.dilation_width_factor = intAttrOne;
        }
    
        TFPaddingIsSameOrValid(op, &state.padding);
    
        // Additionally, we require the filter operand to be of 4-D tensor type so
        // that we can extract info from the shape (e.g., for constructing bias
        // tensor, for setting depth_multiplier attribute, etc.).
        auto filter = tf_op.getFilter();
        auto filter_type = mlir::dyn_cast<RankedTensorType>(filter.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		return fmt.Errorf("failed to swap taints of node %+v", node)
    	}
    	return nil
    }
    
    func (nc *Controller) doNoExecuteTaintingPass(ctx context.Context) {
    	// Extract out the keys of the map in order to not hold
    	// the evictorLock for the entire function and hold it
    	// only when nescessary.
    	var zoneNoExecuteTainterKeys []string
    	func() {
    		nc.evictorLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    func mustTypecheck(src string, conf *Config, info *Info) *Package {
    	pkg, err := typecheck(src, conf, info)
    	if err != nil {
    		panic(err) // so we don't need to pass *testing.T
    	}
    	return pkg
    }
    
    // pkgName extracts the package name from src, which must contain a package header.
    func pkgName(src string) string {
    	const kw = "package "
    	if i := strings.Index(src, kw); i >= 0 {
    		after := src[i+len(kw):]
    		n := len(after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    	// The code below checks for TCP over TCP conflicts and merges listeners
    
    	// Merge the newly built listener with the existing listener, if and only if the filter chains have distinct conditions.
    	// Extract the current filter chain matches, for every new filter chain match being added, check if there is a matching
    	// one in previous filter chains, if so, skip adding this filter chain with a warning.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// For storeconst ops, the AuxInt field encodes both
    		// the value to store and an address offset of the store.
    		// Cast AuxInt to a ValAndOff to extract Val and Off fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		// Work here is duplicated in scanblock and above.
    		// If you make changes here, make changes there too.
    		obj := *(*uintptr)(unsafe.Pointer(addr))
    
    		// At this point we have extracted the next potential pointer.
    		// Quickly filter out nil and pointers back to the current object.
    		if obj != 0 && obj-b >= n {
    			// Test if obj points into the Go heap and, if so,
    			// mark the object.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top