Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for tailLines (0.45 sec)

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

    	// If set, the number of lines from the end of the logs to show. If not specified,
    	// logs are shown from the creation of the container or sinceSeconds or sinceTime
    	// +optional
    	TailLines *int64 `json:"tailLines,omitempty" protobuf:"varint,7,opt,name=tailLines"`
    	// If set, the number of bytes to read from the server before terminating the
    	// log output. This may not display a complete final line of logging, and may return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.pb.go

    	}
    	i--
    	dAtA[i] = 0x48
    	if m.LimitBytes != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.LimitBytes))
    		i--
    		dAtA[i] = 0x40
    	}
    	if m.TailLines != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.TailLines))
    		i--
    		dAtA[i] = 0x38
    	}
    	i--
    	if m.Timestamps {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		errs int
    	}{
    		{core.PodLogOptions{}, 0},
    		{core.PodLogOptions{Previous: true}, 0},
    		{core.PodLogOptions{Follow: true}, 0},
    		{core.PodLogOptions{TailLines: &zero}, 0},
    		{core.PodLogOptions{TailLines: &negative}, 1},
    		{core.PodLogOptions{TailLines: &positive}, 0},
    		{core.PodLogOptions{LimitBytes: &zero}, 1},
    		{core.PodLogOptions{LimitBytes: &negative}, 1},
    		{core.PodLogOptions{LimitBytes: &positive}, 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// of log output.
    	Timestamps bool
    	// If set, the number of lines from the end of the logs to show. If not specified,
    	// logs are shown from the creation of the container or sinceSeconds or sinceTime
    	TailLines *int64
    	// If set, the number of bytes to read from the server before terminating the
    	// log output. This may not display a complete final line of logging, and may return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"timestamps":                   "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
    	"tailLines":                    "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // If set, the number of lines from the end of the logs to show. If not specified,
      // logs are shown from the creation of the container or sinceSeconds or sinceTime
      // +optional
      optional int64 tailLines = 7;
    
      // If set, the number of bytes to read from the server before terminating the
      // log output. This may not display a complete final line of logging, and may return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

          "type": "boolean",
          "uniqueItems": true
        },
        "tailLines-2fRTNzbP": {
          "description": "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
          "in": "query",
          "name": "tailLines",
          "type": "integer",
          "uniqueItems": true
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. api/openapi-spec/v3/api__v1_openapi.json

              "description": "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
              "in": "query",
              "name": "tailLines",
              "schema": {
                "type": "integer",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"tailLines": {
    						SchemaProps: spec.SchemaProps{
    							Description: "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top