Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 634 for wire (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/encoding/gob/decoder.go

    	if id < firstUserId || dec.wireType[id] != nil {
    		dec.err = errors.New("gob: duplicate type received")
    		return
    	}
    
    	// Type:
    	wire := new(wireType)
    	dec.decodeValue(tWireType, reflect.ValueOf(wire))
    	if dec.err != nil {
    		return
    	}
    	// Remember we've seen this type.
    	dec.wireType[id] = wire
    }
    
    var errBadCount = errors.New("invalid message length")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    
    /**
     * Interface that can be provided by the plugin to wire in custom lifecycles
     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheWorkerApiIntegrationTest.groovy

    import javax.inject.Inject
    
    class ConfigurationCacheWorkerApiIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements TasksWithInputsAndOutputs {
        def "task can wire input #type with fixed value to worker action parameter property"() {
            buildFile << """
                import ${Inject.name}
    
                abstract class UsesWorker extends DefaultTask {
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top