Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for 908123 (0.11 sec)

  1. internal/s3select/select_test.go

    			}
    		})
    	}
    }
    
    func TestCSVQueries2(t *testing.T) {
    	testInput := []byte(`id,time,num,num2,text
    1,2010-01-01T,7867786,4565.908123,"a text, with comma"
    2,2017-01-02T03:04Z,-5, 0.765111,
    `)
    	testTable := []struct {
    		name       string
    		query      string
    		input      []byte
    		requestXML []byte // override request XML
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            assertVersionOlder("2.0.1-klm-SNAPSHOT", "2.0.1-lmn-SNAPSHOT");
            // assertVersionOlder( "2.0.1-xyz-SNAPSHOT", "2.0.1-SNAPSHOT" );
            assertVersionOlder("2.0.1-SNAPSHOT", "2.0.1-123-SNAPSHOT");
            assertVersionOlder("2.0.1-xyz-SNAPSHOT", "2.0.1-123-SNAPSHOT");
        }
    
        @Test
        void testSnapshotVsReleases() {
            assertVersionOlder("1.0-RC1", "1.0-SNAPSHOT");
            assertVersionOlder("1.0-rc1", "1.0-SNAPSHOT");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/literals.go

    // This file tests various representations of literals
    // and compares them with literals or constant expressions
    // of equal values.
    
    package literals
    
    func _() {
    	// 0-octals
    	assert(0_123 == 0123)
    	assert(0123_456 == 0123456)
    
    	// decimals
    	assert(1_234 == 1234)
    	assert(1_234_567 == 1234567)
    
    	// hexadecimals
    	assert(0X_0 == 0)
    	assert(0X_1234 == 0x1234)
    	assert(0X_CAFE_f00d == 0xcafef00d)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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