Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for pound (0.13 sec)

  1. releasenotes/notes/exit-if-sds-socket-not-found.yaml

    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 22:42:46 UTC 2023
    - 313 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    			for _, round := range tt.rounds {
    				// Mock Etcd client
    				mockClient := &MockEtcdClient{EndpointVersion: round.endpointsVersion}
    				ctx := context.Background()
    
    				for _, ep := range mockClient.Endpoints() {
    					err := testFeatureSupportChecker.clientSupportsRequestWatchProgress(ctx, mockClient, ep)
    					assert.Equal(t, round.expectedError, err)
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    3099..309A    ; valid                                  # 1.1  COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK..COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
    309B          ; disallowed_STD3_mapped ; 0020 3099     # 1.1  KATAKANA-HIRAGANA VOICED SOUND MARK
    309C          ; disallowed_STD3_mapped ; 0020 309A     # 1.1  KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  4. src/strconv/ftoa.go

    		case 'f':
    			prec = max(digs.nd-digs.dp, 0)
    		case 'g', 'G':
    			prec = digs.nd
    		}
    	} else {
    		// Round appropriately.
    		switch fmt {
    		case 'e', 'E':
    			d.Round(prec + 1)
    		case 'f':
    			d.Round(d.dp + prec)
    		case 'g', 'G':
    			if prec == 0 {
    				prec = 1
    			}
    			d.Round(prec)
    		}
    		digs = decimalSlice{d: d.d[:], nd: d.nd, dp: d.dp}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. cmd/metrics-v3-system-cpu.go

    		m.Set(sysCPULoadPerc, math.Round(perc*100)/100)
    	}
    
    	ts := cpuMetrics.TimesStat
    	tot := ts.User + ts.System + ts.Idle + ts.Iowait + ts.Nice + ts.Steal
    	cpuUserVal := math.Round(ts.User/tot*100*100) / 100
    	m.Set(sysCPUUser, cpuUserVal)
    	cpuSystemVal := math.Round(ts.System/tot*100*100) / 100
    	m.Set(sysCPUSystem, cpuSystemVal)
    	cpuNiceVal := math.Round(ts.Nice/tot*100*100) / 100
    	m.Set(sysCPUNice, cpuNiceVal)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 23 23:56:12 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/math/big/ftoa.go

    			prec = len(d.mant)
    		}
    	} else {
    		// round appropriately
    		switch fmt {
    		case 'e', 'E':
    			// one digit before and number of digits after decimal point
    			d.round(1 + prec)
    		case 'f':
    			// number of digits before and after decimal point
    			d.round(d.exp + prec)
    		case 'g', 'G':
    			if prec == 0 {
    				prec = 1
    			}
    			d.round(prec)
    		}
    	}
    
    	// 3) read digits out and format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/strconv/atof.go

    	for mantissa > 1 && exp < minExp-2 {
    		mantissa = mantissa>>1 | mantissa&1
    		exp++
    	}
    
    	// Round using two bottom bits.
    	round := mantissa & 3
    	mantissa >>= 2
    	round |= mantissa & 1 // round to even (round up if mantissa is odd)
    	exp += 2
    	if round == 3 {
    		mantissa++
    		if mantissa == 1<<(1+flt.mantbits) {
    			mantissa >>= 1
    			exp++
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5609.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 5609: overflow when calculating array size
    
    package pkg
    
    const Large uint64 = 18446744073709551615
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 18:59:51 UTC 2023
    - 385 bytes
    - Viewed (0)
  9. test/fixedbugs/bug255.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var a [10]int    // ok
    var b [1e1]int   // ok
    var c [1.5]int   // ERROR "truncated|must be integer"
    var d ["abc"]int // ERROR "invalid array bound|not numeric|must be integer"
    var e [nil]int   // ERROR "use of untyped nil|invalid array (bound|length)|not numeric|must be constant"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 18:59:51 UTC 2023
    - 852 bytes
    - Viewed (0)
  10. test/fixedbugs/issue28079b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Non-Go-constant but constant values aren't ok for array sizes.
    
    package p
    
    import "unsafe"
    
    type T [uintptr(unsafe.Pointer(nil))]int // ERROR "non-constant array bound|array bound is not constant|must be constant"
    
    func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 547 bytes
    - Viewed (0)
Back to top