Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/encoding/xml/xml.go

    			,x v/^\<!ENTITY/d
    			,s/\<!ENTITY ([^ ]+) .*U\+([0-9A-F][0-9A-F][0-9A-F][0-9A-F]) .+/	"\1": "\\u\2",/g
    		'
    	*/
    	"nbsp":     "\u00A0",
    	"iexcl":    "\u00A1",
    	"cent":     "\u00A2",
    	"pound":    "\u00A3",
    	"curren":   "\u00A4",
    	"yen":      "\u00A5",
    	"brvbar":   "\u00A6",
    	"sect":     "\u00A7",
    	"uml":      "\u00A8",
    	"copy":     "\u00A9",
    	"ordf":     "\u00AA",
    	"laquo":    "\u00AB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. src/main/webapp/css/font-awesome.min.css

    f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottl...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/font-awesome.min.css

    f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottl...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  4. releasenotes/notes/dns-round-robin.yaml

    John Howard <******@****.***> 1614287117 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 25 21:05:17 UTC 2021
    - 188 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test/fixedbugs/issue8183.go

    // license that can be found in the LICENSE file.
    
    // Tests correct reporting of line numbers for errors involving iota,
    // Issue #8183.
    package foo
    
    const (
    	ok = byte(iota + 253)
    	bad
    	barn
    	bard // ERROR "constant 256 overflows byte|integer constant overflow|cannot convert"
    )
    
    const (
    	c = len([1 - iota]int{})
    	d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 622 bytes
    - Viewed (0)
Back to top