Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for sinceTime (0.45 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
      optional int64 sinceSeconds = 4;
    
      // An RFC3339 timestamp from which to show logs. If this value
      // precedes the time a pod was started, only logs since the pod start will be returned.
      // If this value is in the future, no logs will be returned.
      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// Only one of sinceSeconds or sinceTime may be specified.
    	SinceSeconds *int64
    	// An RFC3339 timestamp from which to show logs. If this value
    	// precedes the time a pod was started, only logs since the pod start will be returned.
    	// If this value is in the future, no logs will be returned.
    	// Only one of sinceSeconds or sinceTime may be specified.
    	SinceTime *metav1.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"sinceTime":                    "An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
      optional int64 sinceSeconds = 4;
    
      // An RFC3339 timestamp from which to show logs. If this value
      // precedes the time a pod was started, only logs since the pod start will be returned.
      // If this value is in the future, no logs will be returned.
      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(field.NewPath("limitBytes"), *opts.LimitBytes, "must be greater than 0"))
    	}
    	switch {
    	case opts.SinceSeconds != nil && opts.SinceTime != nil:
    		allErrs = append(allErrs, field.Forbidden(field.NewPath(""), "at most one of `sinceTime` or `sinceSeconds` may be specified"))
    	case opts.SinceSeconds != nil:
    		if *opts.SinceSeconds < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.SinceTime == nil {
    				m.SinceTime = &v1.Time{}
    			}
    			if err := m.SinceTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 6:
    			if wireType != 0 {
    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/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int64",
    						},
    					},
    					"sinceTime": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		{core.PodLogOptions{SinceSeconds: &negative}, 1},
    		{core.PodLogOptions{SinceSeconds: &positive}, 0},
    		{core.PodLogOptions{SinceSeconds: &zero}, 1},
    		{core.PodLogOptions{SinceTime: &now}, 0},
    	}
    	for i, test := range tests {
    		errs := ValidatePodLogOptions(&test.opt)
    		if test.errs != len(errs) {
    			t.Errorf("%d: Unexpected errors: %v", i, errs)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api__v1_openapi.json

              "in": "query",
              "name": "sinceSeconds",
              "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)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "in": "query",
          "name": "sinceSeconds",
          "type": "integer",
          "uniqueItems": true
        },
        "stderr-b6w_ak8R": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top