Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 840 for wire (0.1 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

            daemonRegistry = repoRoot().dir("build/daemon")
            gradleSnippetsDir = repoRoot().dir("platforms/documentation/docs/src/snippets") // TODO use dependency management
        }
    
        // Wire the different inputs for local distributions and repos that are declared by dependencies in the build scripts
        normalizedDistributionZip.distributionZip = configurations["${prefix}TestNormalizedDistributionPath"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/net/http/header.go

    // The key is case insensitive; it is canonicalized by
    // [CanonicalHeaderKey].
    func (h Header) Del(key string) {
    	textproto.MIMEHeader(h).Del(key)
    }
    
    // Write writes a header in wire format.
    func (h Header) Write(w io.Writer) error {
    	return h.write(w, nil)
    }
    
    func (h Header) write(w io.Writer, trace *httptrace.ClientTrace) error {
    	return h.writeSubset(w, nil, trace)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/os/types.go

    // The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
    // The values of these bits should be considered part of the public API and
    // may be used in wire protocols or disk representations: they must not be
    // changed, although new bits might be added.
    const (
    	// The single letters are the abbreviations
    	// used by the String method's formatting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    				tlsConfigCopy.ServerName = inferredHost
    				tlsConfig = tlsConfigCopy
    			}
    
    			// Since this method is primarily used within a "Connection: Upgrade" call we assume the caller is
    			// going to write HTTP/1.1 request to the wire. http2 should not be allowed in the TLSConfig.NextProtos,
    			// so we explicitly set that here. We only do this check if the TLSConfig support http/1.1.
    			if supportsHTTP11(tlsConfig.NextProtos) {
    				tlsConfig = tlsConfig.Clone()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_build_simple.txt

    # This test checks basic "go build -cover" functionality.
    
    [short] skip
    
    # Hard-wire new coverage for this test.
    env GOEXPERIMENT=coverageredesign
    
    # Build for coverage.
    go build -gcflags=-m -o example.exe -cover example/main &
    [race] go build -o examplewithrace.exe -race -cover example/main &
    wait
    
    # First execute without GOCOVERDIR set...
    env GOCOVERDIR=
    exec ./example.exe normal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    //
    // There is no support for groups, message sets, or "has" bits.
    
    package profile
    
    import (
    	"errors"
    	"fmt"
    )
    
    type buffer struct {
    	field    int // field tag
    	typ      int // proto wire type code for field
    	u64      uint64
    	data     []byte
    	tmp      [16]byte
    	tmpLines []Line // temporary storage used while decoding "repeated Line".
    }
    
    type decoder func(*buffer, message) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 		runtime.TypeMeta `json:",inline"`
    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // On the wire, the JSON will look something like this:
    //
    // 	{
    // 		"kind":"MyAPIObject",
    // 		"apiVersion":"v1",
    // 		"myPlugin": {
    // 			"kind":"PluginA",
    // 			"aOption":"foo",
    // 		},
    // 	}
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 		runtime.TypeMeta `json:",inline"`
    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // On the wire, the JSON will look something like this:
    //
    // 	{
    // 		"kind":"MyAPIObject",
    // 		"apiVersion":"v1",
    // 		"myPlugin": {
    // 			"kind":"PluginA",
    // 			"aOption":"foo",
    // 		},
    // 	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        /**
         * Returns the Java Debug Wire Protocol properties for the process. If enabled then the {@code -agentlib:jdwp=...}
         * will be appended to the JVM arguments with the configuration from the parameter.
         *
         * @since 5.6
         */
        @Nested
        JavaDebugOptions getDebugOptions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/net/mptcpsock_linux.go

    }
    
    // isUsingMPTCPProto reports whether the socket protocol is MPTCP.
    //
    // Compared to hasFallenBack method, here only the socket protocol being used is
    // checked: it can be MPTCP but it doesn't mean MPTCP is used on the wire, maybe
    // a fallback to TCP has been done.
    func isUsingMPTCPProto(fd *netFD) bool {
    	proto, _ := fd.pfd.GetsockoptInt(syscall.SOL_SOCKET, syscall.SO_PROTOCOL)
    
    	return proto == _IPPROTO_MPTCP
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 18:48:34 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top