Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Int64Ptr (0.1 sec)

  1. pkg/util/tolerations/tolerations_test.go

    			Effect:            api.TaintEffectNoExecute,
    			TolerationSeconds: utilpointer.Int64Ptr(10),
    		},
    		"foo-noexec-0": {
    			Key:               "foo",
    			Operator:          api.TolerationOpExists,
    			Effect:            api.TaintEffectNoExecute,
    			TolerationSeconds: utilpointer.Int64Ptr(0),
    		},
    		"foo-bar-noexec-10": {
    			Key:               "foo",
    			Operator:          api.TolerationOpEqual,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  2. pkg/volume/projected/projected_test.go

    			fsGroup:     utilptr.Int64Ptr(1000),
    			path:        "token",
    			wantPayload: map[string]util.FileProjection{
    				"token": {
    					Data: []byte("test_projected_namespace:foo:3600:[https://api]"),
    					Mode: 0600,
    				},
    			},
    		},
    		{
    			name:        "fsUser != nil && fsGroup != nil",
    			defaultMode: utilptr.Int32Ptr(0644),
    			fsGroup:     utilptr.Int64Ptr(1000),
    			fsUser:      utilptr.Int64Ptr(1000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    		},
    		{
    			name: "terminationGracePeriodSeconds is negative",
    			template: &api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{},
    				Spec: api.PodSpec{
    					TerminationGracePeriodSeconds: utilpointer.Int64Ptr(-1),
    				},
    			},
    			expected: []string{
    				`spec.terminationGracePeriodSeconds: must be >= 0; negative values are invalid and will be treated as 1`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top