Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for int32Ptr (0.41 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/printers/internalversion/printers_test.go

    					Name:     utilpointer.StringPtr("http"),
    					Port:     utilpointer.Int32Ptr(80),
    					Protocol: &tcpProtocol,
    				}, {
    					Name:     utilpointer.StringPtr("https"),
    					Port:     utilpointer.Int32Ptr(443),
    					Protocol: &tcpProtocol,
    				}, {
    					Name:     utilpointer.StringPtr("extra1"),
    					Port:     utilpointer.Int32Ptr(3000),
    					Protocol: &tcpProtocol,
    				}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

        $transpose_a, $transpose_b, $grad_a, $grad_b),
      (CreateXlaDotV2OpFromTfMatMulOp
        $input, $weight, /*input_zp=*/(CreateScalarIntegerConst<"int32_t", "0">),
        /*weight_zp=*/(CreateScalarIntegerConst<"int32_t", "0">),
        $matmul, $transpose_a, $transpose_b),
      [(IsInt32ElementType $input),
       (IsInt8ElementType $weight),
       (IsConstTensor $weight),
       (IsInt32ElementType $matmul),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // Allocate sufficient memory to tensor buffer.
      int32_t num_strings = offset_.size() - 1;
      // Total bytes include:
      //   * size of content (data_.size)
      //   * offset of each tensor (sizeof(int32_t) * num_strings)
      //   * length of whole buffer (int32_t)
      //   * num of strings (int32_t).
      int32_t bytes = data_.size()                            // size of content
                      + sizeof(int32_t) * (num_strings + 2);  // size of header
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top