Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for Paging (0.2 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    }
    
    // PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject
    // making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches
    // a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InetAddresses.java

     * socket option on an IPv6 socket). Yes, it's confusing. Nevertheless, these "mapped" addresses
     * were never supposed to be seen on the wire. That assumption was dropped, some say mistakenly, in
     * later RFCs with the apparent aim of making IPv4-to-IPv6 transition simpler.
     *
     * <p>Technically one <i>can</i> create a 128bit IPv6 address with the wire format of a "mapped"
     * address, as shown above, and transmit it in an IPv6 packet header. However, Java's InetAddress
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    				}
    			}
    		}()
    	}
    
    	if ech != nil {
    		// Split hello into inner and outer
    		ech.innerHello = hello.clone()
    
    		// Overwrite the server name in the outer hello with the public facing
    		// name.
    		hello.serverName = string(ech.config.PublicName)
    		// Generate a new random for the outer hello.
    		hello.random = make([]byte, 32)
    		_, err = io.ReadFull(c.config.rand(), hello.random)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    //
    //	Multiple HTTP servers can exist on the same port and the code will combine all of them into
    //	one single RDS payload for http.<portNumber>
    //
    // HTTPS servers with TLS termination (i.e. envoy decoding the content, and making outbound http calls to backends)
    // will use route name https.<portNumber>.<portName>.<gatewayName>.<namespace>. HTTPS servers using SNI passthrough or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    //
    // Must be paired with a traceExitedSyscall call.
    func traceExitingSyscall() {
    	trace.exitingSyscall.Add(1)
    }
    
    // traceExitedSyscall marks a goroutine as having exited the syscall slow path.
    func traceExitedSyscall() {
    	trace.exitingSyscall.Add(-1)
    }
    
    // Gomaxprocs emits a ProcsChange event.
    func (tl traceLocker) Gomaxprocs(procs int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // buffered data. More generally, we could short-circuit from (1) to
    // (3) even in chunking mode if the write size from (1) is over some
    // threshold and nothing is in (2).  The answer might be mostly making
    // bufferBeforeChunkingSize smaller and having bufio's fast-paths deal
    // with this instead.
    func (w *response) Write(data []byte) (n int, err error) {
    	return w.write(len(data), data, "")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    // This merging works for both FmtText and FmtOpenMetrics and will use the format of the application metrics
    // Note that we do not return any errors here. If we do, we will drop metrics. For example, the app may be having issues,
    // but we still want Envoy metrics. Instead, errors are tracked in the failed scrape metrics/logs.
    func (s *Server) handleStats(w http.ResponseWriter, r *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/collect/CompactHashMap.java

       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
       */
    
      /** Creates an empty {@code CompactHashMap} instance. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    	// Size of the image
    	Size int64
    	// Used to track how many nodes have this image, it is computed from the Nodes field below
    	// during the execution of Snapshot.
    	NumNodes int
    	// A set of node names for nodes having this image present. This field is used for
    	// keeping track of the nodes during update/add/remove events.
    	Nodes sets.Set[string]
    }
    
    // Snapshot returns a copy without Nodes field of ImageStateSummary
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// as needed with file mode 0755, having the same group and ownership with Kubelet.
    	HostPathDirectoryOrCreate HostPathType = "DirectoryOrCreate"
    	// A directory must exist at the given path
    	HostPathDirectory HostPathType = "Directory"
    	// If nothing exists at the given path, an empty file will be created there
    	// as needed with file mode 0644, having the same group and ownership with Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top