Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 1234567890123 (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/LineBufferingOutputStreamTest.groovy

            outputStream.write("12345678901234567890123456789".getBytes())
            outputStream.close()
    
            then:
            action.text("1234567890123")
            action.text("4567890123456")
            action.text("789")
            action.endOfStream(null)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

        def "calculates available characters when reading and writing"() {
            given:
            def byteBuffer = new StreamByteBuffer(8)
            def out = byteBuffer.outputStream
    
            when:
            out.write("1234567890123".bytes)
            then:
            byteBuffer.totalBytesUnread() == 13
    
            when:
            byteBuffer.readAsString()
            then:
            byteBuffer.totalBytesUnread() == 0
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/time/mono_test.go

    	}
    }
    
    func TestMonotonicSub(t *testing.T) {
    	t1 := Unix(1483228799, 995e6)
    	SetMono(&t1, 123456789012345)
    
    	t2 := Unix(1483228799, 5e6)
    	SetMono(&t2, 123456789012345+10e6)
    
    	t3 := Unix(1483228799, 995e6)
    	SetMono(&t3, 123456789012345+1e9)
    
    	t1w := t1.AddDate(0, 0, 0)
    	if GetMono(&t1w) != 0 {
    		t.Fatalf("AddDate didn't strip monotonic clock reading")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/image-auto.yaml

        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        sidecar.istio.io/inject: "true"
    spec:
      containers:
        - image: ubuntu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. docs/sts/web-identity.py

        tokens = json.loads(id_token_response.text)
        id_token = tokens['id_token']
    
        response = sts_client.assume_role_with_web_identity(
            RoleArn='arn:aws:iam::123456789012:user/svc-internal-api',
            RoleSessionName='test',
            WebIdentityToken=id_token,
            DurationSeconds=3600
        )
    
        s3_resource = boto3.resource('s3',
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            assertEquals("******@****.***", fessConfig.getLdapSecurityPrincipal("1234567890"));
            assertEquals("12345678901@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal("12345678901"));
        }
    
        public void test_maxUsernameLength10() throws IOException {
            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/StatsTesting.java

      static final double TWO_VALUES_MAX = 12.34;
      static final double TWO_VALUES_MIN = -56.78;
    
      static final ImmutableList<Double> OTHER_TWO_VALUES = ImmutableList.of(123.456, -789.012);
      static final double OTHER_TWO_VALUES_MEAN = (123.456 - 789.012) / 2;
      static final double TWO_VALUES_SUM_OF_PRODUCTS_OF_DELTAS =
          (12.34 - TWO_VALUES_MEAN) * (123.456 - OTHER_TWO_VALUES_MEAN)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    	isPrefix bool
    	err      error
    }
    
    var readLineNewlinesTests = []struct {
    	input  string
    	expect []readLineResult
    }{
    	{"012345678901234\r\n012345678901234\r\n", []readLineResult{
    		{[]byte("012345678901234"), true, nil},
    		{nil, false, nil},
    		{[]byte("012345678901234"), true, nil},
    		{nil, false, nil},
    		{nil, false, io.EOF},
    	}},
    	{"0123456789012345\r012345678901234\r", []readLineResult{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	MTVSRQM R1, V1                          // 10340e42
    	MTVSRWM R1, V1                          // 10320e42
    	PADDI R3, $1234567890, $1, R4           // 06104996388302d2
    	PADDI R0, $1234567890, $0, R4           // 06004996388002d2
    	PADDI R0, $1234567890, $1, R4           // 06104996388002d2
    	PDEPD R1, R2, R3                        // 7c231138
    	PEXTD R1, R2, R3                        // 7c231178
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/injection.yaml

        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        istio.io/rev: canary
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top