Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for malicious (0.1 sec)

  1. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// presence of a REQUEST_METHOD environment variable).
    	// When this is set, ProxyForURL will return an error
    	// when HTTPProxy applies, because a client could be
    	// setting HTTP_PROXY maliciously. See https://golang.org/s/cgihttpproxy.
    	CGI bool
    }
    
    // config holds the parsed configuration for HTTP proxy settings.
    type config struct {
    	// Config represents the original configuration as defined above.
    	Config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	}
    
    	_, currentReadyCondition := controllerutil.GetNodeCondition(nodeHealth.status, v1.NodeReady)
    	if currentReadyCondition == nil {
    		// Lack of NodeReady condition may only happen after node addition (or if it will be maliciously deleted).
    		// In both cases, the pod will be handled correctly (evicted if needed) during processing
    		// of the next node update event.
    		return
    	}
    
    	pods := []*v1.Pod{pod}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/net/http/request.go

    // non-nil error of type [*MaxBytesError] for a Read beyond the limit,
    // and closes the underlying reader when its Close method is called.
    //
    // MaxBytesReader prevents clients from accidentally or maliciously
    // sending a large request and wasting server resources. If possible,
    // it tells the [ResponseWriter] to close the connection after the limit
    // has been reached.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top