Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for FLOAT64 (0.23 sec)

  1. pkg/proxy/ipvs/proxier.go

    		proxier.logger.Error(err, "Error syncing healthcheck endpoints")
    	}
    
    	metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("internal").Set(float64(proxier.serviceNoLocalEndpointsInternal.Len()))
    	metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("external").Set(float64(proxier.serviceNoLocalEndpointsExternal.Len()))
    
    	// Finish housekeeping, clear stale conntrack entries for UDP Services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	const randomBitCount = 26
    	q := cheaprandn(1<<randomBitCount) + 1
    	qlog := fastlog2(float64(q)) - randomBitCount
    	if qlog > 0 {
    		qlog = 0
    	}
    	const minusLog2 = -0.6931471805599453 // -ln(2)
    	return int32(qlog*(minusLog2*float64(mean))) + 1
    }
    
    // nextSampleNoFP is similar to nextSample, but uses older,
    // simpler code to avoid floating point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    			err = z.Init(ctx) // Initializes all pools.
    		})
    		if err != nil {
    			if !configRetriableErrors(err) {
    				logger.Fatal(err, "Unable to initialize backend")
    			}
    			retry := time.Duration(r.Float64() * float64(5*time.Second))
    			storageLogIf(ctx, fmt.Errorf("Unable to initialize backend: %w, retrying in %s", err, retry))
    			time.Sleep(retry)
    			attempt++
    			continue
    		}
    		break
    	}
    
    	return z, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. src/testing/testing.go

    func (f matchStringOnly) SnapshotCoverage()                       {}
    
    func (f matchStringOnly) InitRuntimeCoverage() (mode string, tearDown func(string, string) (string, error), snapcov func() float64) {
    	return
    }
    
    // Main is an internal function, part of the implementation of the "go test" command.
    // It was exported because it is cross-package and predates "internal" packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    func (ps *PushContext) UpdateMetrics() {
    	ps.proxyStatusMutex.RLock()
    	defer ps.proxyStatusMutex.RUnlock()
    
    	for _, pm := range metrics {
    		mmap := ps.ProxyStatus[pm.Name()]
    		pm.Record(float64(len(mmap)))
    	}
    }
    
    // It is called after virtual service short host name is resolved to FQDN
    func virtualServiceDestinations(v *networking.VirtualService) map[string]sets.Set[int] {
    	if v == nil {
    		return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Cvt64Uto64F ...) => (CDLGBR ...)
    
    (Cvt32Fto32U ...) => (CLFEBR ...)
    (Cvt32Fto64U ...) => (CLGEBR ...)
    (Cvt64Fto32U ...) => (CLFDBR ...)
    (Cvt64Fto64U ...) => (CLGDBR ...)
    
    // Lowering float32 <-> float64
    (Cvt32Fto64F ...) => (LDEBR ...)
    (Cvt64Fto32F ...) => (LEDBR ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    (Round(32|64)F ...) => (LoweredRound(32|64)F ...)
    
    // Lowering shifts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    					"The value is in seconds until certificate expiry (negative if already expired). " +
    					"If client certificate is invalid or unused, the value will be +INF.",
    				StabilityLevel: metrics.ALPHA,
    			},
    			func() float64 {
    				if c := clientCertificateManager.Current(); c != nil && c.Leaf != nil {
    					return math.Trunc(time.Until(c.Leaf.NotAfter).Seconds())
    				}
    				return math.Inf(1)
    			},
    		))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    		}
    		for j, cell := range row.Cells {
    			// do not add to this test without discussion - may break clients
    			switch cell.(type) {
    			case float64, int64, int32, int, string, bool:
    			case []interface{}:
    			case nil:
    			default:
    				t.Errorf("row %d, cell %d has an unrecognized type, only JSON serialization safe types are allowed: %T ", i, j, cell)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            "url": { "type": "string" }
          }
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": {
          "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. tests/query_test.go

    		ID      int
    		Name    string     `gorm:"default:NULL"`
    		Flag    bool       `gorm:"default:NULL"`
    		Number1 int64      `gorm:"default:NULL"`
    		Number2 uint64     `gorm:"default:NULL"`
    		Number3 float64    `gorm:"default:NULL"`
    		Now     *time.Time `gorm:"default:NULL"`
    		Item1Id string
    		Item1   *QueryResetItem `gorm:"references:ID"`
    		Item2Id string
    		Item2   *QueryResetItem `gorm:"references:ID"`
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
Back to top