Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 822 for varints (0.33 sec)

  1. src/cmd/internal/gcprog/gcprog.go

    //	10000000 n c: repeat the previous n bits c times; n, c are varints
    //	1nnnnnnn c: repeat the previous n bits c times; c is a varint
    //
    // The numbers n and c, when they follow a code, are encoded as varints
    // using the same encoding as encoding/binary's Uvarint.
    package gcprog
    
    import (
    	"fmt"
    	"io"
    )
    
    const progMaxLiteral = 127 // maximum n for literal n bit code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/tracebuf.go

    	return len(buf.arr)-buf.pos >= size
    }
    
    // varintAt writes varint v at byte position pos in buf. This always
    // consumes traceBytesPerNumber bytes. This is intended for when the caller
    // needs to reserve space for a varint but can't populate it until later.
    // Use varintReserve to reserve this space.
    func (buf *traceBuf) varintAt(pos int, v uint64) {
    	for i := 0; i < traceBytesPerNumber; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/encoding/binary/varint.go

    // format incompatible with a varint encoding for larger numbers (say 128-bit).
    
    import (
    	"errors"
    	"io"
    )
    
    // MaxVarintLenN is the maximum length of a varint-encoded N-bit integer.
    const (
    	MaxVarintLen16 = 3
    	MaxVarintLen32 = 5
    	MaxVarintLen64 = 10
    )
    
    // AppendUvarint appends the varint-encoded form of x,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Variant.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Declares that a property represents a variant dimension. Variants are used in dependency
     * resolution to discriminate between various binaries that may match the requirements (such
     * as a platform, a build type, ...).
     *
     * This annotation must be set on a getter. The return type of the getter must either be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package compact
    
    // parents maps a compact index of a tag to the compact index of the parent of
    // this tag.
    var parents = []ID{ // 775 elements
    	// Entry 0 - 3F
    	0x0000, 0x0000, 0x0001, 0x0001, 0x0000, 0x0004, 0x0000, 0x0006,
    	0x0000, 0x0008, 0x0000, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,
    	0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/module-with-variants.module

    {
        "formatVersion": "1.0",
        "variants": [
            {
                "name": "api",
                "attributes": { "usage": "compile" },
                "files": [ { "name": "a.zip", "url": "a.zop" } ],
                "dependencies": [ { "group": "g1", "module": "m1", "version": { "prefers": "v1" } } ]
            }
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 313 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/xctest-variant-task-graph.dot

      compileTestVariantSwift -> linkTestVariant -> installTestVariant -> xcTestVariant [dir=back, style=dashed]
      compileTestVariantSwift[label=<compile<i>Variant</i>Swift>]
      linkTestVariant[label=<link<i>Variant</i>>]
      installTestVariant[label=<installTest<i>Variant</i>>]
      xcTestVariant[label=<xcTest<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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelectorSpec.groovy

            return Mock(ResolvedVariantSet) {
                asDescribable() >> Describables.of("mock producer")
                getVariants() >> variants
                getOverriddenAttributes() >> ImmutableAttributes.EMPTY
            }
        }
    
        private List<TransformedVariant> transformedVariants(List<ResolvedVariant> variants) {
            variants.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

     */
    
    package org.gradle.api.internal.artifacts;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * A node identifier that uniquely identifies a variant within a component by the variant's name.
     *
     * Note: Generally, variants should be identified by their attributes and capabilities, as the name
     * is more of a human-readable identifier.
     */
    public class ComponentVariantNodeIdentifier implements NodeIdentifier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top