Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 843 for wire (0.04 sec)

  1. staging/src/k8s.io/api/README.md

    recommend using the "official" serialization stack in `k8s.io/apimachinery`.
    Directly serializing these types to proto will not result in data that matches
    the wire format or is compatible with other kubernetes ecosystem tools. The
    reason is that the wire format includes a magic prefix and an envelope proto.
    Please see:
    https://kubernetes.io/docs/reference/using-api/api-concepts/#protobuf-encoding
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt

    import okhttp3.internal.http2.Header
    import okio.ByteString
    
    /**
     * Representation of an individual case (set of headers and wire format). There are many cases for a
     * single story.  This class is used reflectively with Moshi to parse stories.
     */
    data class Case(
      val seqno: Int = 0,
      val wire: ByteString? = null,
      val headers: List<Map<String, String>>,
    ) : Cloneable {
      val headersList: List<Header>
        get() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.pb.go

    	for iNdEx < l {
    		preIndex := iNdEx
    		var wire uint64
    		for shift := uint(0); ; shift += 7 {
    			if shift >= 64 {
    				return ErrIntOverflowGenerated
    			}
    			if iNdEx >= l {
    				return io.ErrUnexpectedEOF
    			}
    			b := dAtA[iNdEx]
    			iNdEx++
    			wire |= uint64(b&0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/net/http/internal/chunked.go

    	return &chunkedWriter{w}
    }
    
    // Writing to chunkedWriter translates to writing in HTTP chunked Transfer
    // Encoding wire format to the underlying Wire chunkedWriter.
    type chunkedWriter struct {
    	Wire io.Writer
    }
    
    // Write the contents of data as one chunk to Wire.
    // NOTE: Note that the corresponding chunk-writing procedure in Conn.Write has
    // a bug since it does not check for success of [io.WriteString]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java

    import org.gradle.api.Project;
    
    /**
     * Adds an "example" extension to project and wires dependencies from the extension to a Configuration.
     */
    public class ExamplePlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            ExampleExtension example = project.getExtensions().create("example", ExampleExtension.class);
    // tag::wire-dependencies[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 661 bytes
    - Viewed (0)
  6. src/internal/trace/raw/writer.go

    // license that can be found in the LICENSE file.
    
    package raw
    
    import (
    	"encoding/binary"
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Writer emits the wire format of a trace.
    //
    // It may not produce a byte-for-byte compatible trace from what is
    // produced by the runtime, because it may be missing extra padding
    // in the LEB128 encoding that the runtime adds but isn't necessary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/resources/org/gradle/nativeplatform/test/cunit/tasks/gradle_cunit_main.c

        failureCount = CU_get_number_of_failures();
    
        // Write test failures to the console
        if (failureCount > 0) {
            printf("\nThere were test failures:");
            CU_basic_show_failures(CU_get_failure_list());
            printf("\n\n");
        }
    
        CU_cleanup_registry();
    
        // TODO Wire a test listener and use it to generate a test event stream and binary results (don't use Automated)
    
        return failureCount == 0 ? 0 : -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. docs/works_with_okhttp.md

     * [Stetho](https://github.com/facebook/stetho): Stetho is a debug bridge for Android applications.
     * [Thrifty](https://github.com/Microsoft/thrifty): An implementation of Apache Thrift for Android.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/README.md

    Otherwise they're just normal programs.
    
    ## Trace debug commands
    
    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
      It can produce a text version of the trace wire format, or convert
      the text format back into bytes.
    * `gotracevalidate` parses traces and validates them.
      It performs more rigorous checks than the parser does on its own,
      which helps for debugging the parser as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    # MNG-6181: mvn -X also prints all debug logging from HttpClient
    org.slf4j.simpleLogger.log.org.apache.http=off
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 16 16:19:23 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top