Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for float1 (0.15 sec)

  1. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer); public static StringBuffer format(double, int, StringBuffer); public static StringBuffer format(double, double, StringBuffer); private static StringBuffer...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 164.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer); public static StringBuffer format(double, int, StringBuffer); public static StringBuffer format(double, double, StringBuffer); private static StringBuffer...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	metrics.DesiredPodCount.WithLabelValues("").Set(float64(len(allRegularPods)))
    	metrics.DesiredPodCount.WithLabelValues("true").Set(float64(len(allStaticPods)))
    	metrics.ActivePodCount.WithLabelValues("").Set(float64(len(activeRegularPods)))
    	metrics.ActivePodCount.WithLabelValues("true").Set(float64(len(activeStaticPods)))
    	metrics.MirrorPodCount.Set(float64(len(mirrorPods)))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    }
    
    func newNodeLifecycleControllerFromClient(
    	ctx context.Context,
    	kubeClient clientset.Interface,
    	evictionLimiterQPS float32,
    	secondaryEvictionLimiterQPS float32,
    	largeClusterThreshold int32,
    	unhealthyZoneThreshold float32,
    	nodeMonitorGracePeriod time.Duration,
    	nodeStartupGracePeriod time.Duration,
    	nodeMonitorPeriod time.Duration,
    ) (*nodeLifecycleController, error) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_FakeQuantOp : TFL_Op<"fake_quant", [
        Pure,
        QuantizableResult]> {
      let summary = "FakeQuant operator";
    
      let description = [{
        Fake-quantize the 'inputs' tensor of type float via float scalars min and
        max to 'outputs' tensor of same shape as inputs.
      }];
    
      let arguments = (
        ins TFL_FpTensor:$input,
        // The expected [min, max] range of values.
        F32Attr:$min,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // expected-warning @+1 {{Image should be a 4D float tensor}}
    func.func private @dense_image_warp_invalid_input_shape(%arg0: tensor<2x4x4xf32>, %arg1: tensor<2x4x4x2xf32>) -> tensor<2x4x4x1xf32> attributes {tf._implements = "addons:DenseImageWarp"}
    
    // expected-warning @+1 {{Flow should be a 4D float tensor}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  7. src/encoding/json/testdata/code.json.gz

    min_t":1228781586,"max_t":1244593336,"mean_t":1236526846},{"name":"line-flow-with-floats-4-expected.checksum","kids":[],"cl_weight":0.0017318415877075515,"touches":3,"min_t":1229478785,"max_t":1238022568,"mean_t":1234568989},{"name":"line-flow-with-floats-1-expected.png","kids":[],"cl_weight":0.0017318415877075515,"touches":3,"min_t":1229478785,"max_t":1238022568,"mean_t":1234568989},{"name":"line-flow-with-floats-6-expected.png","kids":[],"cl_weight":0.0017318415877075515,"touches":3,"min_t":12...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    	events := make([]timestampedScaleEvent, len(rawEvents))
    	segmentDuration := float64(periodSeconds) / float64(len(rawEvents))
    	for idx, event := range rawEvents {
    		segmentBoundary := time.Duration(float64(periodSeconds) - segmentDuration*float64(idx+1) + segmentDuration/float64(2))
    		events[idx] = timestampedScaleEvent{
    			replicaChange: int32(event),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    						OutlierDetection: outlier,
    					},
    				},
    			}))
    		g.Expect(c.CommonLbConfig.HealthyPanicThreshold).To(Not(BeNil()))
    		g.Expect(c.CommonLbConfig.HealthyPanicThreshold.GetValue()).To(Equal(float64(0)))
    	}
    }
    
    func TestApplyOutlierDetection(t *testing.T) {
    	g := NewWithT(t)
    
    	tests := []struct {
    		name string
    		cfg  *networking.OutlierDetection
    		o    *cluster.OutlierDetection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer); public static StringBuffer format(double, int, StringBuffer); public static StringBuffer format(double, double, StringBuffer); private static StringBuffer...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
Back to top