Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for wirep (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            }
        }
    }
    
    tasks.register("resolve") {
        val conf: FileCollection = configurations["runtimeClasspath"]
    
        // Wire build dependencies
        dependsOn(conf)
    
        // Resolve dependencies
        doLast {
            assert(conf.files.map { it.name } == listOf("foo-1.0.jar"))
        }
    }
    ----
    ======
    =====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// Register all client-go features with kube's feature gate instance and make all client-go
    	// feature checks use kube's instance. The effect is that for kube binaries, client-go
    	// features are wired to the existing --feature-gates flag just as all other features
    	// are. Further, client-go features automatically support the existing mechanisms for
    	// feature enablement metrics and test overrides.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    // before: [{vhosts: [a], routes: [r1, r2]},{vhosts: [b], routes: [r1, r2]}]
    // after: [{vhosts: [a,b], routes: [r1, r2]}]
    // Note: At this point in the code, r1 and r2 are just pointers. However, once we send them over the wire
    // they are fully expanded and expensive, so the optimization is important.
    func collapseDuplicateRoutes(input map[host.Name]*route.VirtualHost) map[host.Name]*route.VirtualHost {
    	if !features.EnableRouteCollapse {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    // This ensures mac addresses are unique for proper load balancing
    // There is a possibility of MAC collisions but this Mac address is used for remote endpoints only
    // and not sent on the wire.
    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    		a, b, c, d := ip4[0], ip4[1], ip4[2], ip4[3]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	}
    }
    
    // Tests regarding the ordering of Write, WriteHeader, Header, and
    // Flush calls. In Go 1.0, rw.WriteHeader immediately flushed the
    // (*response).header to the wire. In Go 1.1, the actual wire flush is
    // delayed, so we could maybe tack on a Content-Length and better
    // Content-Type after we see more (or all) of the output. To preserve
    // compatibility with Go 1, we need to be careful to track which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/net/http/request.go

    // had ended up blocked by some intrusion detection systems.
    // See https://codereview.appspot.com/7532043.
    const defaultUserAgent = "Go-http-client/1.1"
    
    // Write writes an HTTP/1.1 request, which is the header and body, in wire format.
    // This method consults the following fields of the request:
    //
    //	Host
    //	URL
    //	Method (defaults to "GET")
    //	Header
    //	ContentLength
    //	TransferEncoding
    //	Body
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    func (c *Conn) readFromUntil(r io.Reader, n int) error {
    	if c.rawInput.Len() >= n {
    		return nil
    	}
    	needs := n - c.rawInput.Len()
    	// There might be extra input waiting on the wire. Make a best effort
    	// attempt to fetch it so that it can be used in (*Conn).Read to
    	// "predict" closeNotify alerts.
    	c.rawInput.Grow(needs + bytes.MinRead)
    	_, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    	for i := 0; i < 100; i++ {
    		go func() {
    			for ctx.Err() == nil {
    				// Sleep in C for long enough that it is likely that the runtime
    				// will retake this goroutine's currently wired P.
    				C.usleep(1000 /* 1ms */)
    				runtime.Gosched() // avoid starvation (see #28701)
    			}
    		}()
    		go func() {
    			// Trigger lots of synchronization and memory reads/writes to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    		}
    		recordingConn.WriteTo(out)
    		t.Logf("Wrote %s\n", path)
    	}
    }
    
    // peekError does a read with a short timeout to check if the next read would
    // cause an error, for example if there is an alert waiting on the wire.
    func peekError(conn net.Conn) error {
    	conn.SetReadDeadline(time.Now().Add(100 * time.Millisecond))
    	if n, err := conn.Read(make([]byte, 1)); n != 0 {
    		return errors.New("unexpectedly read data")
    	} else if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	Code     http2ErrCode
    	Cause    error // optional additional detail
    }
    
    // errFromPeer is a sentinel error value for StreamError.Cause to
    // indicate that the StreamError was sent from the peer over the wire
    // and wasn't locally generated in the Transport.
    var http2errFromPeer = errors.New("received from peer")
    
    func http2streamError(id uint32, code http2ErrCode) http2StreamError {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top