Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for float1 (0.38 sec)

  1. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/gonum/blas,v0.0.0-20181208220705-f22b278b28ac,h1:Q0Jsdxl5jbxouNs1TQYt0gxesYMU4VXRbsTlgDloZ50=,bfcad082317ace0d0bdc0832f0835d95aaa90f91cf3fce5d2d81ccdd70c38620
    github.com/gonum/floats,v0.0.0-20181209220543-c233463c7e82,h1:EvokxLQsaaQjcWVWSV38221VAK7qc2zhaO17bKys/18=,52afb5e33a03b027f8f451e23618c2decbe4443f996a203e332858c1a348a627
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    			if maxRatioFound && minQuantityFound && maxQuantityFound {
    				maxRatioValue := float64(maxRatio.Value())
    				minQuantityValue := minQuantity.Value()
    				maxQuantityValue := maxQuantity.Value()
    				if maxRatio.Value() < resource.MaxMilliValue && minQuantityValue < resource.MaxMilliValue && maxQuantityValue < resource.MaxMilliValue {
    					maxRatioValue = float64(maxRatio.MilliValue()) / 1000
    					minQuantityValue = minQuantity.MilliValue()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      %1 = mhlo.remainder %arg0, %arg1 : tensor<10x10xbf16>
      %2 = mhlo.compare  NE, %1, %0,  FLOAT : (tensor<10x10xbf16>, tensor<10x10xbf16>) -> tensor<10x10xi1>
      %3 = mhlo.compare  LT, %1, %0,  FLOAT : (tensor<10x10xbf16>, tensor<10x10xbf16>) -> tensor<10x10xi1>
      %4 = mhlo.compare  LT, %arg1, %0,  FLOAT : (tensor<10x10xbf16>, tensor<10x10xbf16>) -> tensor<10x10xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    	return common.OpenAPIDefinition{
    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.",
    				Type:        v1.JSON{}.OpenAPISchemaType(),
    				Format:      v1.JSON{}.OpenAPISchemaFormat(),
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    ht:170px;padding:10px;border:1px solid #e5e5e5;overflow:auto;-webkit-overflow-scrolling:touch;resize:both}.uk-clearfix::before{content:"";display:table-cell}.uk-clearfix::after{content:"";display:table;clear:both}.uk-float-left{float:left}.uk-float-right{float:right}[class*=uk-float-]{max-width:100%}.uk-overflow-hidden{overflow:hidden}.uk-overflow-auto{overflow:auto;-webkit-overflow-scrolling:touch}.uk-overflow-auto>:last-child{margin-bottom:0}.uk-resize{resize:both}.uk-resize-vertical{resize:ve...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    			t.Errorf("Expected computeProbability(%d) to be %s, got: %s", num, expected, actual)
    		}
    	}
    
    	prevProbability := float64(0)
    	for i := 100000; i > 1; i-- {
    		currProbability, err := strconv.ParseFloat(computeProbability(i), 64)
    		if err != nil {
    			t.Fatalf("Error parsing float probability for %d: %v", i, err)
    		}
    		if currProbability <= prevProbability {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		"status": {},
    	},
    	ExternalDocs: &apiextensions.ExternalDocumentation{
    		Description: "This is an external documentation description",
    	},
    	Example: &example,
    }
    
    func float64Ptr(f float64) *float64 {
    	return &f
    }
    
    func int64Ptr(f int64) *int64 {
    	return &f
    }
    
    func jsonPtr(x interface{}) *apiextensions.JSON {
    	ret := apiextensions.JSON(x)
    	return &ret
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    	// match: (Const32F [val])
    	// result: (MOVFconst [float64(val)])
    	for {
    		val := auxIntToFloat32(v.AuxInt)
    		v.reset(OpARMMOVFconst)
    		v.AuxInt = float64ToAuxInt(float64(val))
    		return true
    	}
    }
    func rewriteValueARM_OpConst64F(v *Value) bool {
    	// match: (Const64F [val])
    	// result: (MOVDconst [float64(val)])
    	for {
    		val := auxIntToFloat64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_ADMIN_LONG_FIELDS = "index.admin.long.fields";
    
        /** The key of the configuration. e.g. boost */
        String INDEX_ADMIN_FLOAT_FIELDS = "index.admin.float.fields";
    
        /** The key of the configuration. e.g.  */
        String INDEX_ADMIN_DOUBLE_FIELDS = "index.admin.double.fields";
    
        /** The key of the configuration. e.g. url,title,role,boost */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Trace sampling fraction.
    	//
    	// Used to set the fraction of time that traces are sampled. Higher values are more accurate but add CPU overhead.
    	//
    	// Allowed values: 0.0 to 1.0
    	TraceSampling float64 `protobuf:"fixed64,8,opt,name=traceSampling,proto3" json:"traceSampling,omitempty"`
    	// K8s resources settings.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top