Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SinceSeconds (0.26 sec)

  1. pkg/apis/core/v1/validation/validation_test.go

    			LimitBytes:   &limitBytesGreaterThan1,
    			SinceSeconds: &sinceSecondsGreaterThan1,
    		},
    	}, {
    		name: "Invalid podLogOptions with zero or negative LimitBytes",
    		podLogOptions: v1.PodLogOptions{
    			TailLines:    &positiveLine,
    			LimitBytes:   &limitBytesLessThan1,
    			SinceSeconds: &sinceSecondsGreaterThan1,
    		},
    	}, {
    		name: "Invalid podLogOptions with zero or negative SinceSeconds",
    		podLogOptions: v1.PodLogOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/conversion_test.go

    )
    
    func TestPodLogOptions(t *testing.T) {
    	sinceSeconds := int64(1)
    	sinceTime := metav1.NewTime(time.Date(2000, 1, 1, 12, 34, 56, 0, time.UTC).Local())
    	tailLines := int64(2)
    	limitBytes := int64(3)
    
    	versionedLogOptions := &v1.PodLogOptions{
    		Container:    "mycontainer",
    		Follow:       true,
    		Previous:     true,
    		SinceSeconds: &sinceSeconds,
    		SinceTime:    &sinceTime,
    		Timestamps:   true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy.go

    		params.Add("follow", "true")
    	}
    	if opts.Previous {
    		params.Add("previous", "true")
    	}
    	if opts.Timestamps {
    		params.Add("timestamps", "true")
    	}
    	if opts.SinceSeconds != nil {
    		params.Add("sinceSeconds", strconv.FormatInt(*opts.SinceSeconds, 10))
    	}
    	if opts.SinceTime != nil {
    		params.Add("sinceTime", opts.SinceTime.Format(time.RFC3339))
    	}
    	if opts.TailLines != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top