Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for lives (0.07 sec)

  1. pkg/kubelet/container/runtime.go

    	// GetContainerLogs returns logs of a specific container. By
    	// default, it returns a snapshot of the container log. Set 'follow' to true to
    	// stream the log. Set 'follow' to false and specify the number of lines (e.g.
    	// "100" or "all") to tail the log.
    	GetContainerLogs(ctx context.Context, pod *v1.Pod, containerID ContainerID, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) (err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"Examples: \"example.crt,example.key\" or \"foo.crt,foo.key:*.foo.com,foo.com\".")
    
    	fs.IntVar(&s.HTTP2MaxStreamsPerConnection, "http2-max-streams-per-connection", s.HTTP2MaxStreamsPerConnection, ""+
    		"The limit that the server gives to clients for "+
    		"the maximum number of streams in an HTTP/2 connection. "+
    		"Zero means to use golang's default.")
    
    	fs.BoolVar(&s.PermitPortSharing, "permit-port-sharing", s.PermitPortSharing,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    		fileContent string
    		want        []string
    		wantErr     bool
    	}{
    		{
    			name: "valid content",
    			fileContent: `libiscsi_tcp 28672 1 iscsi_tcp, Live 0xffffffffc07ae000
    libiscsi 57344 3 ib_iser,iscsi_tcp,libiscsi_tcp, Live 0xffffffffc079a000
    raid10 57344 0 - Live 0xffffffffc0597000`,
    			want:    []string{"libiscsi_tcp", "libiscsi", "raid10"},
    			wantErr: false,
    		},
    	}
    	for _, test := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    		wantErr      bool
    	}{
    		{
    			name:         "valid",
    			input:        "0: kubelet 65536 2147483648",
    			wantFirstID:  65536,
    			wantRangeLen: 2147483648,
    		},
    		{
    			name:    "multiple lines",
    			input:   "0: kubelet 1 2\n1: kubelet 3 4\n",
    			wantErr: true,
    		},
    		{
    			name:    "wrong format",
    			input:   "0: kubelet 65536",
    			wantErr: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    }
    
    func helpTestCreateUpdateDeleteWithFamilies(t *testing.T, testCases []cudTestCase, ipFamilies []api.IPFamily) {
    	// NOTE: do not call t.Helper() here.  It's more useful for errors to be
    	// attributed to lines in this function than the caller of it.
    
    	storage, _, server := newStorage(t, ipFamilies)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    
    	for _, tc := range testCases {
    		name := tc.name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
              "tty": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    func validateNodeAffinity(na *core.NodeAffinity, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	// TODO: Uncomment the next three lines once RequiredDuringSchedulingRequiredDuringExecution is implemented.
    	// if na.RequiredDuringSchedulingRequiredDuringExecution != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	//    up these events from the channel, after consuming the whole time
    	//    budget (defaulted to 100ms) on waiting, we will simply close the watch,
    	//    which will cause the test failure
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    	// pick up something from ResultCh in the meantime.
    	//
    	// The same can potentially happen in production, but in that case a watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    				Param(ws.QueryParameter("untilTime", "untilTime is an RFC3339 timestamp until which to show logs").DataType("string")).
    				Param(ws.QueryParameter("tailLines", "tailLines is used to retrieve the specified number of lines from the end of the log").DataType("string")).
    				Param(ws.QueryParameter("pattern", "pattern filters log entries by the provided regex pattern").DataType("string")).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

        echo "${name}:"
        for k in "${!map[@]}"; do
          echo "  ${k}:"
          declare -a values
          IFS="${item_sep}" read -ra values <<<"${map[$k]}"
          for val in "${values[@]}"; do
            # declare across two lines so errexit can catch failures
            declare v
            v=$(yaml-quote "${val}")
            echo "    - ${v}"
          done
        done
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top