Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for int32Ptr (0.29 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				},
    				RegistryPullQPS:                           utilpointer.Int32Ptr(5),
    				RegistryBurst:                             10,
    				EventRecordQPS:                            utilpointer.Int32Ptr(50),
    				EventBurst:                                100,
    				EnableDebuggingHandlers:                   utilpointer.Bool(true),
    				HealthzPort:                               utilpointer.Int32Ptr(10248),
    				HealthzBindAddress:                        "127.0.0.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/apiserverleasegc/gc_controller_test.go

    						"apiserver.kubernetes.io/identity": "kube-apiserver",
    					},
    				},
    				Spec: coordinationv1.LeaseSpec{
    					HolderIdentity:       pointer.StringPtr("kube-apiserver-12345"),
    					LeaseDurationSeconds: pointer.Int32Ptr(10),
    					RenewTime:            &metav1.MicroTime{Time: fakeClock.Now()},
    				},
    			},
    			expectDeleted: false,
    		},
    		{
    			name: "expired lease but with a different component label",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 20:37:22 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. pkg/volume/projected/projected_test.go

    			defaultMode: utilptr.Int32Ptr(0644),
    			path:        "other-token",
    			expiration:  &minute,
    			wantPayload: map[string]util.FileProjection{
    				"other-token": {Data: []byte("test_projected_namespace:foo:60:[https://example.com]"), Mode: 0644},
    			},
    		},
    		{
    			name:        "good service account defaults audience",
    			defaultMode: utilptr.Int32Ptr(0644),
    			path:        "token",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  4. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    						{
    							Name:         "com.example.csi.driver1",
    							NodeID:       "com.example.csi/csi-node1",
    							TopologyKeys: nil,
    							Allocatable: &storage.VolumeNodeResources{
    								Count: utilpointer.Int32Ptr(10),
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:             "new node with max limit of volumes",
    			driverName:       "com.example.csi.driver1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    	kubeRuntimeManager.imagePuller = images.NewImageManager(
    		kubecontainer.FilterEventRecorder(recorder),
    		kubeRuntimeManager,
    		flowcontrol.NewBackOff(time.Second, 300*time.Second),
    		false,
    		utilpointer.Int32Ptr(0), // No limit on max parallel image pulls,
    		0,                       // Disable image pull throttling by setting QPS to 0,
    		0,
    		&fakePodPullingTimeRecorder{},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/config.go

    	Float32    *types.Type
    	Float64    *types.Type
    	UInt       *types.Type
    	Uintptr    *types.Type
    	String     *types.Type
    	BytePtr    *types.Type // TODO: use unsafe.Pointer instead?
    	Int32Ptr   *types.Type
    	UInt32Ptr  *types.Type
    	IntPtr     *types.Type
    	UintptrPtr *types.Type
    	Float32Ptr *types.Type
    	Float64Ptr *types.Type
    	BytePtrPtr *types.Type
    }
    
    // NewTypes creates and populates a Types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    			SideEffects:    &noSideEffect,
    			TimeoutSeconds: int32Ptr(1),
    		}, {
    			Name:           "webhook2.k8s.io",
    			ClientConfig:   validClientConfig,
    			SideEffects:    &noSideEffect,
    			TimeoutSeconds: int32Ptr(15),
    		}, {
    			Name:           "webhook3.k8s.io",
    			ClientConfig:   validClientConfig,
    			SideEffects:    &noSideEffect,
    			TimeoutSeconds: int32Ptr(30),
    		},
    		}, true),
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Port:     pointer.Int32Ptr(int32(3456)),
    				},
    				{
    					Name:     pointer.StringPtr("udp-example"),
    					Protocol: protoPtr(v1.ProtocolUDP),
    					Port:     pointer.Int32Ptr(int32(161)),
    				},
    				{
    					Name:     pointer.StringPtr("tcp-example"),
    					Protocol: protoPtr(v1.ProtocolTCP),
    					Port:     pointer.Int32Ptr(int32(80)),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Load <t> ptr mem) && is64BitInt(t) && !config.BigEndian && t.IsSigned() =>
    	(Int64Make
    		(Load <typ.Int32> (OffPtr <typ.Int32Ptr> [4] ptr) mem)
    		(Load <typ.UInt32> ptr mem))
    
    (Load <t> ptr mem) && is64BitInt(t) && !config.BigEndian && !t.IsSigned() =>
    	(Int64Make
    		(Load <typ.UInt32> (OffPtr <typ.UInt32Ptr> [4] ptr) mem)
    		(Load <typ.UInt32> ptr mem))
    
    (Load <t> ptr mem) && is64BitInt(t) && config.BigEndian && t.IsSigned() =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_manager_test.go

    		burst:          0,
    	}
    
    	useSerializedEnv := false
    	maxParallelImagePulls := 5
    	var wg sync.WaitGroup
    
    	puller, fakeClock, fakeRuntime, container, _ := pullerTestEnv(t, *testCase, useSerializedEnv, utilpointer.Int32Ptr(int32(maxParallelImagePulls)))
    	fakeRuntime.BlockImagePulls = true
    	fakeRuntime.CalledFunctions = nil
    	fakeRuntime.T = t
    	fakeClock.Step(time.Second)
    
    	// First 5 EnsureImageExists should result in runtime calls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top