Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 964 for uvarint (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/swift-library-variant-task-graph.png

    swift-library-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-variant-task-graph.dot

      compileTestVariantCpp -> linkTestVariant -> installTestVariant -> runTestVariant [dir=back, style=dashed]
      compileTestVariantCpp[label=<compile<i>Variant</i>Cpp>]
      linkTestVariant[label=<link<i>Variant</i>>]
      installTestVariant[label=<installTest<i>Variant</i>>]
      runTestVariant[label=<runTest<i>Variant</i>>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/cpp-application-variant-task-graph.png

    cpp-application-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/swift-application-variant-task-graph.png

    swift-application-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-variant-task-graph.png

    cpp-unit-test-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		return cr
    	}
    	return r
    }
    
    // Variant represents a registered variant of a language as defined by BCP 47.
    type Variant struct {
    	ID  uint8
    	str string
    }
    
    // ParseVariant parses and returns a Variant. An error is returned if s is not
    // a valid variant.
    func ParseVariant(s string) (v Variant, err error) {
    	defer func() {
    		if recover() != nil {
    			v = Variant{}
    			err = ErrSyntax
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    As a consequence, if we want our instrumented classes to be used in place of this variant when executing tests, we need to attach similar attributes to our variant.
    In fact, the attribute we care about is `org.gradle.libraryelements` which explains _what the variant contains_, so we can setup the variant this way:
    
    .Declaring the variant attributes
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/runtime/tracebuf.go

    	// Write the buffer's header.
    	if exp == traceNoExperiment {
    		w.byte(byte(traceEvEventBatch))
    	} else {
    		w.byte(byte(traceEvExperimentalBatch))
    		w.byte(byte(exp))
    	}
    	w.varint(uint64(w.gen))
    	w.varint(uint64(mID))
    	w.varint(uint64(ts))
    	w.traceBuf.lenPos = w.varintReserve()
    	return w
    }
    
    // traceBufQueue is a FIFO of traceBufs.
    type traceBufQueue struct {
    	head, tail *traceBuf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/internal/trace/event/event.go

    	// HasData is true if the event has trailer consisting of a
    	// varint length followed by unencoded bytes of some data.
    	//
    	// An event may not be both a timed event and have data.
    	HasData bool
    
    	// IsStack indicates that the event represents a complete
    	// stack trace. Specifically, it means that after the arguments
    	// there's a varint length, followed by 4*length varints. Each
    	// group of 4 represents the PC, file ID, func ID, and line number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	if needSort {
    		sort.Sort(variantsSort{varID, variant})
    		k, l := 0, -1
    		for i, v := range varID {
    			w := int(v)
    			if l == w {
    				// Remove duplicates.
    				continue
    			}
    			varID[k] = varID[i]
    			variant[k] = variant[i]
    			k++
    			l = w
    		}
    		if str := bytes.Join(variant[:k], separator); len(str) == 0 {
    			end = start - 1
    		} else {
    			scan.resizeRange(start, end, len(str))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top