Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 589 for seni (0.04 sec)

  1. docs/de/docs/tutorial/path-params-numeric-validations.md

    Hier wird es wichtig, in der Lage zu sein, <abbr title="greater than – größer als"><code>gt</code></abbr> zu deklarieren, und nicht nur <abbr title="greater than or equal – größer oder gleich"><code>ge</code></abbr>, da Sie hiermit bestimmen können, dass ein Wert, zum Beispiel, größer als `0` sein muss, obwohl er kleiner als `1` ist.
    
    `0.5` wäre also ein gültiger Wert, aber nicht `0.0` oder `0`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:59:29 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	// number in the parent process.
    	Foreground bool
    	Pgid       int // Child's process group ID if Setpgid.
    	// Pdeathsig, if non-zero, is a signal that the kernel will send to
    	// the child process when the creating thread dies. Note that the signal
    	// is sent on thread termination, which may happen before process termination.
    	// There are more details at https://go.dev/issue/27505.
    	Pdeathsig    Signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/net/http/cookie.go

    package http
    
    import (
    	"errors"
    	"fmt"
    	"log"
    	"net"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"strconv"
    	"strings"
    	"time"
    )
    
    // A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
    // HTTP response or the Cookie header of an HTTP request.
    //
    // See https://tools.ietf.org/html/rfc6265 for details.
    type Cookie struct {
    	Name   string
    	Value  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/types.go

    	// so the scheduler should only send minimal information about the eligible nodes
    	// assuming that the extender already cached full details of all nodes in the cluster
    	NodeCacheCapable bool
    	// ManagedResources is a list of extended resources that are managed by
    	// this extender.
    	// - A pod will be sent to the extender on the Filter, Prioritize and Bind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/kubelet/config/config.go

    	"k8s.io/kubernetes/pkg/kubelet/events"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    )
    
    // PodConfigNotificationMode describes how changes are sent to the update channel.
    type PodConfigNotificationMode int
    
    const (
    	// PodConfigNotificationUnknown is the default value for
    	// PodConfigNotificationMode when uninitialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    	LegacyLocalhostProbeDestination = env.Register("REWRITE_PROBE_LEGACY_LOCALHOST_DESTINATION", false,
    		"If enabled, readiness probes will be sent to 'localhost'. Otherwise, they will be sent to the Pod's IP, matching Kubernetes' behavior.")
    
    	ProbeKeepaliveConnections = env.Register("ENABLE_PROBE_KEEPALIVE_CONNECTIONS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    	require.NoError(t, err)
    	assert.Equal(t, constants.PortForwardV1Name, protocol)
    	defer spdyClient.Close() //nolint:errcheck
    	// Create a SPDY client stream, which will queue a SPDY server stream
    	// on the stream creation channel. Send random data on the client stream
    	// reading off the SPDY server stream, and validating it was tunneled.
    	randomSize := 1024 * 1024
    	randomData := make([]byte, randomSize)
    	_, err = rand.Read(randomData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Cache.kt

            .receivedResponseAtMillis(receivedResponseMillis)
            .build()
        }
    
        companion object {
          /** Synthetic response header: the local time when the request was sent. */
          private val SENT_MILLIS = "${Platform.get().getPrefix()}-Sent-Millis"
    
          /** Synthetic response header: the local time when the response was received. */
          private val RECEIVED_MILLIS = "${Platform.get().getPrefix()}-Received-Millis"
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/net/http/response.go

    	//
    	// Trailer must not be accessed concurrently with Read calls
    	// on the Body.
    	//
    	// After Body.Read has returned io.EOF, Trailer will contain
    	// any trailer values sent by the server.
    	Trailer Header
    
    	// Request is the request that was sent to obtain this Response.
    	// Request's Body is nil (having already been consumed).
    	// This is only populated for Client requests.
    	Request *Request
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/stmt0.go

    		y float32
    		z complex128
    	)
    	x++
    	y--
    	z++
    }
    
    func sends() {
    	var ch chan int
    	var rch <-chan int
    	var x int
    	x <- /* ERROR "cannot send" */ x
    	rch <- /* ERROR "cannot send" */ x
    	ch <- "foo" /* ERRORx `cannot use .* in send` */
    	ch <- x
    }
    
    func selects() {
    	select {}
    	var (
    		ch chan int
    		sc chan <- bool
    	)
    	select {
    	case <-ch:
    	case (<-ch):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top