Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for wantnil (0.24 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    		//    Instead, we consider this to workload traffic. This gives the same behavior as if we were an application doing internal load balancing
    		//    with ztunnel.
    		//    Note: there is a pretty valid case for wanting to send to the service from ingress. This gives a two tier delegation.
    		//    However, it's not safe to do that by default; perhaps a future API could opt into this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                ((AbstractDomainObjectCreatingProvider) t).removedBeforeRealized = true;
            }
        }
    
        /**
         * <p>Subclass hook for implementations wanting to throw an exception when an attempt is made to add an item with the same name as an existing item.</p>
         *
         * <p>This implementation does not thrown an exception, meaning that {@code add(T)} will simply return {@code false}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            return this;
        }
    
        @Override
        public void registerNode(ModelNodeInternal node, Multimap<ModelActionRole, ? extends ModelAction> actions) {
            // Disabled before 2.3 release due to not wanting to validate task names (which may contain invalid chars), at least not yet
            // ModelPath.validateName(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. src/net/http/client.go

    	//
    	// RoundTrip must always close the body, including on errors,
    	// but depending on the implementation may do so in a separate
    	// goroutine even after RoundTrip returns. This means that
    	// callers wanting to reuse the body for subsequent requests
    	// must arrange to wait for the Close call before doing so.
    	//
    	// The Request's URL and Header fields must be initialized.
    	RoundTrip(*Request) (*Response, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    				}
    			} else {
    				if got.Method != "HEAD" {
    					t.Errorf("Wrong method for destination: %q", got.Method)
    				}
    				gotURL := got.URL.String()
    				wantURL := ts.URL + "/"
    				if gotURL != wantURL {
    					t.Errorf("Got URL %q, want %q", gotURL, wantURL)
    				}
    			}
    		})
    	}
    }
    
    func TestOnProxyConnectResponse(t *testing.T) {
    
    	var tcases = []struct {
    		proxyStatusCode int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	}
    	w.ctx = nil
    	w.done = true
    
    	w.result <- connOrError{pc: pc, err: err, idleAt: idleAt}
    	close(w.result)
    
    	return true
    }
    
    // cancel marks w as no longer wanting a result (for example, due to cancellation).
    // If a connection has been delivered already, cancel returns it with t.putOrCloseIdleConn.
    func (w *wantConn) cancel(t *Transport, err error) {
    	w.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    		if clientGone {
    			// TODO: could we also get into this state if
    			// the peer does a half close
    			// (e.g. CloseWrite) because they're done
    			// sending frames but they're still wanting
    			// our open replies?  Investigate.
    			// TODO: add CloseWrite to crypto/tls.Conn first
    			// so we have a way to test this? I suppose
    			// just for testing we could have a non-TLS mode.
    			return false
    		}
    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