Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for 908123 (0.11 sec)

  1. test/char_lit.go

    func main() {
    	var i uint64 =
    		' ' +
    		'a' +
    		'ä' +
    		'本' +
    		'\a' +
    		'\b' +
    		'\f' +
    		'\n' +
    		'\r' +
    		'\t' +
    		'\v' +
    		'\\' +
    		'\'' +
    		'\000' +
    		'\123' +
    		'\x00' +
    		'\xca' +
    		'\xFE' +
    		'\u0123' +
    		'\ubabe' +
    		'\U0010FFFF' +
    		'\U000ebabe'
    	if '\U000ebabe' != 0x000ebabe {
    		print("ebabe wrong\n")
    		os.Exit(1)
    	}
    	if i != 0x20e213 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 657 bytes
    - Viewed (0)
  2. test/stringrange.go

    // Test range over strings.
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"unicode/utf8"
    )
    
    func main() {
    	s := "\000\123\x00\xca\xFE\u0123\ubabe\U0000babe\U0010FFFFx"
    	expect := []rune{0, 0123, 0, 0xFFFD, 0xFFFD, 0x123, 0xbabe, 0xbabe, 0x10FFFF, 'x'}
    	offset := 0
    	var i int
    	var c rune
    	ok := true
    	cnum := 0
    	for i, c = range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 08 21:01:23 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue63489a.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.4
    
    package p
    
    const c = 0o123 // ERROR "file declares //go:build go1.4"
    
    // ERROR "file declares //go:build go1.4"
    
    //line issue63489a.go:13:1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:56:10 UTC 2023
    - 362 bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/helper/normalize_score_test.go

    		},
    		{
    			reverse:        true,
    			scores:         []int64{1, 2, 3, 4},
    			expectedScores: []int64{75, 50, 25, 0},
    		},
    		{
    			scores:         []int64{1000, 10, 20, 30},
    			expectedScores: []int64{100, 1, 2, 3},
    		},
    		{
    			reverse:        true,
    			scores:         []int64{1000, 10, 20, 30},
    			expectedScores: []int64{0, 99, 98, 97},
    		},
    		{
    			scores:         []int64{1, 1, 1, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 16:15:18 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. test/initialize.go

    // Test initialization of package-level variables.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type S struct {
    	A, B, C, X, Y, Z int
    }
    
    type T struct {
    	S
    }
    
    var a1 = S{0, 0, 0, 1, 2, 3}
    var b1 = S{X: 1, Z: 3, Y: 2}
    
    var a2 = S{0, 0, 0, 0, 0, 0}
    var b2 = S{}
    
    var a3 = T{S{1, 2, 3, 0, 0, 0}}
    var b3 = T{S: S{A: 1, B: 2, C: 3}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 04:04:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/convert/BigDecimalConversionUtilTest.java

            assertEquals(0, new BigDecimal("0.123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.123D))));
            assertEquals(0, new BigDecimal("0.0123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.0123D))));
            assertEquals(0, new BigDecimal("0.00123").compareTo(BigDecimalConversionUtil.toBigDecimal(new Double(0.00123D))));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/compress/bzip2/bzip2_test.go

    		sym uint8 // Expected output symbol
    	}{
    		{idx: 1, sym: 1}, // [1 0 2 3 4]
    		{idx: 0, sym: 1}, // [1 0 2 3 4]
    		{idx: 1, sym: 0}, // [0 1 2 3 4]
    		{idx: 4, sym: 4}, // [4 0 1 2 3]
    		{idx: 1, sym: 0}, // [0 4 1 2 3]
    	}
    
    	mtf := newMTFDecoderWithRange(5)
    	for i, v := range vectors {
    		sym := mtf.Decode(v.idx)
    		t.Log(mtf)
    		if sym != v.sym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

    // by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6.
    // Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1
    // Invalid: 10.01.2.3 or 2001:db8:0:0:0::1
    message IPAddress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6.
    // Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1
    // Invalid: 10.01.2.3 or 2001:db8:0:0:0::1
    message IPAddress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top