Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 139 for Thresholds (0.92 sec)

  1. src/go/printer/testdata/expressions.input

    }
    
    
    func _() {
    	_ = T{}
    	_ = struct{}{}
    	_ = [10]T{}
    	_ = [...]T{}
    	_ = []T{}
    	_ = map[int]T{}
    }
    
    
    // one-line structs/interfaces in composite literals (up to a threshold)
    func _() {
    	_ = struct{}{}
    	_ = struct{ x int }{0}
    	_ = struct{ x, y, z int }{0, 1, 2}
    	_ = struct{ int }{0}
    	_ = struct{ s struct { int } }{struct{ int}{0} }
    
    	_ = (interface{})(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	//  - 'error': the handler return an error
    	//  - 'ok': the handler returned a result (no error and no panic)
    	//  - 'pending': the handler is still running in the background and it did not return
    	//    within the wait threshold.
    	requestPostTimeoutTotal = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Subsystem:      APIServerComponent,
    			Name:           "request_post_timeout_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  3. src/go/printer/testdata/expressions.golden

    }
    
    func _() {
    	_ = T{}
    	_ = struct{}{}
    	_ = [10]T{}
    	_ = [...]T{}
    	_ = []T{}
    	_ = map[int]T{}
    }
    
    // one-line structs/interfaces in composite literals (up to a threshold)
    func _() {
    	_ = struct{}{}
    	_ = struct{ x int }{0}
    	_ = struct{ x, y, z int }{0, 1, 2}
    	_ = struct{ int }{0}
    	_ = struct{ s struct{ int } }{struct{ int }{0}}
    
    	_ = (interface{})(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.raw

    }
    
    func _() {
    	_ = T{}
    	_ = struct{}{}
    	_ = [10]T{}
    	_ = [...]T{}
    	_ = []T{}
    	_ = map[int]T{}
    }
    
    // one-line structs/interfaces in composite literals (up to a threshold)
    func _() {
    	_ = struct{}{}
    	_ = struct{ x int }{0}
    	_ = struct{ x, y, z int }{0, 1, 2}
    	_ = struct{ int }{0}
    	_ = struct{ s struct{ int } }{struct{ int }{0}}
    
    	_ = (interface{})(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/branchelim.go

    	clobberBlock(yes)
    	clobberBlock(no)
    	clobberBlock(post)
    
    	f.invalidateCFG()
    	return true
    }
    
    // shouldElimIfElse reports whether estimated cost of eliminating branch
    // is lower than threshold.
    func shouldElimIfElse(no, yes, post *Block, arch string) bool {
    	switch arch {
    	default:
    		return true
    	case "amd64":
    		const maxcost = 2
    		phi := 0
    		other := 0
    		for _, v := range post.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. src/go/doc/reader.go

    	if n == 0 {
    		return
    	}
    
    	// determine values list with which to associate the Value for this decl
    	values := &r.values
    	const threshold = 0.75
    	if domName != "" && r.isVisible(domName) && domFreq >= int(float64(len(decl.Specs))*threshold) {
    		// typed entries are sufficiently frequent
    		if typ := r.lookupType(domName); typ != nil {
    			values = &typ.values // associate with that type
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/match.go

    // with the list of supported tags. The first element is used as the default
    // value in case no match is found.
    //
    // Its Match method matches the first of the given Tags to reach a certain
    // confidence threshold. The tags passed to Match should therefore be specified
    // in order of preference. Extensions are ignored for matching.
    //
    // The index returned by the Match method corresponds to the index of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. cmd/data-usage_test.go

    			path:   "bucket/dirwithalot/0",
    			size:   filesBelowT,
    			objs:   filesBelowT,
    			oSizes: sizeHistogram{0: filesBelowT},
    		},
    		{
    			// Gets compacted at this level (below obj threshold)...
    			path:   "bucket/dirwithalot/0",
    			size:   filesBelowT,
    			objs:   filesBelowT,
    			oSizes: sizeHistogram{0: filesBelowT},
    		},
    		{
    			// Gets compacted at this level...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

        if [[ ${gigs} -ge ${KUBE_PARALLEL_BUILD_MEMORY} ]]; then
          kube::log::status "Multiple platforms requested and available ${gigs}G >= threshold ${KUBE_PARALLEL_BUILD_MEMORY}G, building platforms in parallel"
          parallel=true
        else
          kube::log::status "Multiple platforms requested, but available ${gigs}G < threshold ${KUBE_PARALLEL_BUILD_MEMORY}G, building platforms in serial"
          parallel=false
        fi
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/evented.go

    // pods stuck at GetNewerThan in pod workers will get unstuck.
    func (e *EventedPLEG) updateGlobalCache() {
    	e.cache.UpdateTime(time.Now())
    }
    
    // Update the relisting period and threshold
    func (e *EventedPLEG) Update(relistDuration *RelistDuration) {
    	e.genericPleg.Update(relistDuration)
    }
    
    // Healthy check if PLEG work properly.
    func (e *EventedPLEG) Healthy() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top