Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 250 for xoffset (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			eventsAddedToWatchcache: bufferSize,
    			intervalStartIndex:      0,
    		},
    		{
    			name:                    "watchCache partially propagated, eventsAddedToWatchcache < capacity, intervalStartIndex at some offset",
    			eventsAddedToWatchcache: bufferSize,
    			intervalStartIndex:      5,
    		},
    		{
    			name:                    "watchCache fully propagated, eventsAddedToWatchcache = capacity",
    			eventsAddedToWatchcache: capacity,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemBuilder.java

        @Override
        InternalProblemBuilder lineInFileLocation(String path, int line, int column, int length);
    
        @Override
        InternalProblemBuilder offsetInFileLocation(String path, int offset, int length);
    
        @Override
        InternalProblemBuilder pluginLocation(String pluginId);
    
        @Override
        InternalProblemBuilder stackLocation();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/string_utils.h

      int WriteToBuffer(char** buffer);
    
     private:
      // Data buffer to store contents of strings, not including headers.
      std::vector<char> data_;
      // Offset of the starting index of each string in data buffer.
      std::vector<size_t> offset_;
      // Max length in number of characters that we permit the total
      // buffer containing the concatenation of all added strings to be.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableMultiset.java

      @GwtIncompatible // not present in emulated superclass
      @Override
      int copyIntoArray(@Nullable Object[] dst, int offset) {
        for (Multiset.Entry<E> entry : entrySet()) {
          Arrays.fill(dst, offset, offset + entry.getCount(), entry.getElement());
          offset += entry.getCount();
        }
        return offset;
      }
    
      @Override
      public boolean equals(@CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/go/ast/commentmap.go

    		} else {
    			// set fake sentinel position to infinity so that
    			// all comments get processed before the sentinel
    			const infinity = 1 << 30
    			qpos.Offset = infinity
    			qpos.Line = infinity
    		}
    
    		// process comments before current node
    		for r.end.Offset <= qpos.Offset {
    			// determine recent node group
    			if top := stack.pop(r.comment.Pos()); top != nil {
    				pg = top
    				pgend = fset.Position(pg.End())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/os/os_windows_test.go

    	pathBuf        []uint16
    }
    
    type namePosition struct {
    	offset uint16
    	length uint16
    }
    
    func (rd *reparseData) addUTF16s(s []uint16) (offset uint16) {
    	off := len(rd.pathBuf) * 2
    	rd.pathBuf = append(rd.pathBuf, s...)
    	return uint16(off)
    }
    
    func (rd *reparseData) addString(s string) (offset, length uint16) {
    	p := syscall.StringToUTF16(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

            """
    
            when:
            run('reportProblem')
    
            then:
            receivedProblem.definition.documentationLink.url == 'https://example.org/doc'
        }
    
        def "can emit a problem with offset location"() {
            given:
            withReportProblemTask """
                problems.forNamespace('org.example.plugin').reporting {
                    it.id('type', 'label')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/runtime/map.go

    	oldoverflow *[]*bmap       // keeps overflow buckets of hmap.oldbuckets alive
    	startBucket uintptr        // bucket iteration started at
    	offset      uint8          // intra-bucket offset to start from during iteration (should be big enough to hold bucketCnt-1)
    	wrapped     bool           // already wrapped around from end of bucket array to beginning
    	B           uint8
    	i           uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            return this;
        }
    
        @Override
        public InternalProblemBuilder offsetInFileLocation(String path, int offset, int length) {
            this.addLocation(DefaultOffsetInFileLocation.from(path, offset, length));
            return this;
        }
    
        @Override
        public InternalProblemBuilder lineInFileLocation(String path, int line, int column, int length) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    func (span *mspan) specialFindSplicePoint(offset uintptr, kind byte) (**special, bool) {
    	// Find splice point, check for existing record.
    	iter := &span.specials
    	found := false
    	for {
    		s := *iter
    		if s == nil {
    			break
    		}
    		if offset == uintptr(s.offset) && kind == s.kind {
    			found = true
    			break
    		}
    		if offset < uintptr(s.offset) || (offset == uintptr(s.offset) && kind < s.kind) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top