Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for startCond (0.25 sec)

  1. src/internal/pkgbits/decoder.go

    	absIdx := pr.AbsIdx(k, idx)
    
    	var start uint32
    	if absIdx > 0 {
    		start = pr.elemEnds[absIdx-1]
    	}
    	end := pr.elemEnds[absIdx]
    
    	return pr.elemData[start:end]
    }
    
    // StringIdx returns the string value for the given string index.
    func (pr *PkgDecoder) StringIdx(idx Index) string {
    	return pr.DataIdx(RelocString, idx)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  2. tensorflow/c/ops.h

        TF_ShapeInferenceContext* ctx, TF_ShapeHandle* shape_handle, int64_t i,
        TF_DimensionHandle* result);
    
    // Returns in <*result> a sub-shape of <shape_handle>, with dimensions
    // [start:end]. <start> and <end> can be negative, to index from the end of the
    // shape. <start> and <end> are set to the rank of <shape_handle> if > rank of
    // <shape_handle>.
    TF_CAPI_EXPORT extern void TF_ShapeInferenceContextSubshape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Inst).MatchEmptyWidth", Method, 0},
    		{"(*Inst).MatchRune", Method, 0},
    		{"(*Inst).MatchRunePos", Method, 3},
    		{"(*Inst).String", Method, 0},
    		{"(*Prog).Prefix", Method, 0},
    		{"(*Prog).StartCond", Method, 0},
    		{"(*Prog).String", Method, 0},
    		{"(*Regexp).CapNames", Method, 0},
    		{"(*Regexp).Equal", Method, 0},
    		{"(*Regexp).MaxCap", Method, 0},
    		{"(*Regexp).Simplify", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	for start := 0; start < len(sources); start += chunkSize {
    		end := start + chunkSize
    		if end > len(sources) {
    			end = len(sources)
    		}
    		chunkP, chunkMsrc, chunkSave, chunkCount, chunkErr := concurrentGrab(sources[start:end], fetch, obj, ui, tr)
    		switch {
    		case chunkErr != nil:
    			return nil, nil, false, 0, chunkErr
    		case chunkP == nil:
    			continue
    		case p == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // returned. If there is no type associated with a key, it returns the empty
    // string.
    func (t Tag) TypeForKey(key string) string {
    	if _, start, end, _ := t.findTypeForKey(key); end != start {
    		s := t.str[start:end]
    		if p := strings.IndexByte(s, '-'); p >= 0 {
    			s = s[:p]
    		}
    		return s
    	}
    	return ""
    }
    
    var (
    	errPrivateUse       = errors.New("cannot set a key on a private use tag")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/writebarrier.go

    				nonPtrStores++
    				if nonPtrStores > 2 {
    					break FindSeq
    				}
    			default:
    				if last == nil {
    					continue
    				}
    				break FindSeq
    			}
    		}
    		stores = append(stores[:0], b.Values[start:end]...) // copy to avoid aliasing
    		after = append(after[:0], b.Values[end:]...)
    		b.Values = b.Values[:start]
    
    		// find the memory before the WB stores
    		mem := stores[0].MemoryArg()
    		pos := stores[0].Pos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. src/strings/strings.go

    // and assumes that f always returns the same value for a given c.
    func FieldsFunc(s string, f func(rune) bool) []string {
    	// A span is used to record a slice of s of the form s[start:end].
    	// The start index is inclusive and the end index is exclusive.
    	type span struct {
    		start int
    		end   int
    	}
    	spans := make([]span, 0, 32)
    
    	// Find the field start and end indices.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    		case end > int64(len(raw)):
    			t.Errorf("token %d: position [%d,%d) for %T extends beyond input", i, start, end, have)
    		default:
    			text := raw[start:end]
    			if strings.ContainsAny(text, "<>") && (!strings.HasPrefix(text, "<") || !strings.HasSuffix(text, ">")) {
    				t.Errorf("token %d: misaligned raw token %#q for %T", i, text, have)
    			}
    		}
    		lastEnd = end
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/go/doc/comment/parse.go

    					p := c.(*Paragraph)
    					p.Text = d.parseLinkedText(string(p.Text[0].(Plain)))
    				}
    			}
    		}
    	}
    
    	return d.Doc
    }
    
    // A span represents a single span of comment lines (lines[start:end])
    // of an identified kind (code, heading, paragraph, and so on).
    type span struct {
    	start int
    	end   int
    	kind  spanKind
    }
    
    // A spanKind describes the kind of span.
    type spanKind int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    	if start < 0 || start >= len(section) {
    		return "", false
    	}
    
    	for end := start; end < len(section); end++ {
    		if section[end] == 0 {
    			return string(section[start:end]), true
    		}
    	}
    	return "", false
    }
    
    // Section returns a section with the given name, or nil if no such
    // section exists.
    func (f *File) Section(name string) *Section {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top