Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for int32Ptr (0.17 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

                              Value &padding_high) {
      Value zero = CreateScalarConstValue<int32_t>(builder, loc, 0);
      Value one = CreateScalarConstValue<int32_t>(builder, loc, 1);
      Value two = CreateScalarConstValue<int32_t>(builder, loc, 2);
      Value filter_size = CreateScalarConstValue<int32_t>(builder, loc, filter_sz);
      Type int32_scalar_type = zero.getType();
    
      auto scalar_add = [&](Value lhs, Value rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters_test.cc

    }
    
    TEST(CalibrationParametersTest, CalculateNumBinsDivisible) {
      int32_t num_bins = CalculateActualNumBins(
          /*min_value=*/0.0, /*max_value=*/4.0, /*bin_width=*/2.0);
    
      // Expect 2 bins: [0, 2), [2, 4].
      EXPECT_EQ(num_bins, 2);
    }
    
    TEST(CalibrationParametersTest, CalculateNumBinsNotDivisible) {
      int32_t num_bins = CalculateActualNumBins(
          /*min_value=*/0.0, /*max_value=*/5.0, /*bin_width=*/2.0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top