Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for encodeArg (0.17 sec)

  1. cmd/data-usage-cache.go

    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    			(*z)[zb0003] = struct{}{}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z dataUsageHashMap) EncodeMsg(en *msgp.Writer) (err error) {
    	err = en.WriteArrayHeader(uint32(len(z)))
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	for zb0004 := range z {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    	// entropy encoding. This mode is useful in compressing data that has
    	// already been compressed with an LZ style algorithm (e.g. Snappy or LZ4)
    	// that lacks an entropy encoder. Compression gains are achieved when
    	// certain bytes in the input stream occur more frequently than others.
    	//
    	// Note that HuffmanOnly produces a compressed output that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	}
    	return obj, actual, strict
    }
    
    // selfDescribedCBOR is the CBOR encoding of the head of tag number 55799. This tag, specified in
    // RFC 8949 Section 3.4.6 "Self-Described CBOR", encloses all output from the encoder, has no
    // special semantics, and is used as a magic number to recognize CBOR-encoded data items.
    //
    // See https://www.rfc-editor.org/rfc/rfc8949.html#name-self-described-cbor.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_4x.md

        available in those versions!
    
    
    ## Version 4.8.0
    
    _2020-07-11_
    
     *  New: Change `HeldCertificate.Builder` to use its own ASN.1 certificate encoder. This is part
        of our effort to remove the okhttp-tls module's dependency on Bouncy Castle. We think Bouncy
        Castle is great! But it's a large dependency (6.5 MiB) and its security provider feature
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

            write(value.dependencyMetadata.files)
            write(value.componentFilter)
    
            // Write the file extension -> attributes mappings
            // TODO - move this to an encoder
            encodePreservingSharedIdentityOf(value.artifactTypeRegistry) {
                val mappings = value.artifactTypeRegistry.create()!!
                writeCollection(mappings) {
                    writeString(it.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    	case w.TextMarshalerT != nil:
    		return w.TextMarshalerT.Name
    	}
    	return unknown
    }
    
    type typeInfo struct {
    	id      typeId
    	encInit sync.Mutex // protects creation of encoder
    	encoder atomic.Pointer[encEngine]
    	wire    wireType
    }
    
    // typeInfoMap is an atomic pointer to map[reflect.Type]*typeInfo.
    // It's updated copy-on-write. Readers just do an atomic load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. cmd/api-response.go

    type ObjectVersion struct {
    	Object
    	IsLatest  bool
    	VersionID string `xml:"VersionId"`
    
    	isDeleteMarker bool
    }
    
    // MarshalXML - marshal ObjectVersion
    func (o ObjectVersion) MarshalXML(e *xxml.Encoder, start xxml.StartElement) error {
    	if o.isDeleteMarker {
    		start.Name.Local = "DeleteMarker"
    	} else {
    		start.Name.Local = "Version"
    	}
    	type objectVersionWrapper ObjectVersion
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    	info, ok := runtime.SerializerInfoForMediaType(proxyconfigscheme.Codecs.SupportedMediaTypes(), mediaType)
    	if !ok {
    		return fmt.Errorf("unable to locate encoder -- %q is not a supported media type", mediaType)
    	}
    
    	encoder := proxyconfigscheme.Codecs.EncoderForVersion(info.Serializer, v1alpha1.SchemeGroupVersion)
    
    	configFile, err := os.Create(o.WriteConfigTo)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/crypto/rsa/pkcs1v15.go

    }
    
    // These are ASN1 DER structures:
    //
    //	DigestInfo ::= SEQUENCE {
    //	  digestAlgorithm AlgorithmIdentifier,
    //	  digest OCTET STRING
    //	}
    //
    // For performance, we don't use the generic ASN1 encoder. Rather, we
    // precompute a prefix of the digest value that makes a valid ASN1 DER string
    // with the correct contents.
    var hashPrefixes = map[crypto.Hash][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. internal/bucket/object/lock/lock.go

    	}
    
    	*rDate = RetentionDate{retDate}
    	return nil
    }
    
    // MarshalXML encodes expiration date if it is non-zero and encodes
    // empty string otherwise
    func (rDate RetentionDate) MarshalXML(e *xml.Encoder, startElement xml.StartElement) error {
    	if rDate.IsZero() {
    		return nil
    	}
    	return e.EncodeElement(amztime.ISO8601Format(rDate.Time), startElement)
    }
    
    // ObjectRetention specified in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top