Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 5l (0.02 sec)

  1. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/ListSerializerTest.groovy

        }
    
        def "serialize list of longs"() {
            when:
            def serializer = new ListSerializer(BaseSerializerFactory.LONG_SERIALIZER)
    
            then:
            serialize([10L, 5L, 99L], serializer) == [10L, 5L, 99L]
        }
    
        def "serialize null entry"() {
            when:
            def serializer = new ListSerializer(stringSerializer)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/SetSerializerTest.groovy

        }
    
        def "serialize set of longs"() {
            when:
            def serializer = new SetSerializer(BaseSerializerFactory.LONG_SERIALIZER)
    
            then:
            serialize([1L, 5L, 99L] as Set, serializer) as List == [1L, 5L, 99L]
        }
    
        def "serialize null entry"() {
            when:
            def serializer = new SetSerializer(stringSerializer)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

        }
    
        @Test
        void testSize() {
            FileSizeFormat format = new FileSizeFormat();
    
            long _0_bytes = 0L;
            assertEquals("0 B", format.format(_0_bytes));
    
            long _5_bytes = 5L;
            assertEquals("5 B", format.format(_5_bytes));
    
            long _10_bytes = 10L;
            assertEquals("10 B", format.format(_10_bytes));
    
            long _15_bytes = 15L;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                    .register("http", PlainConnectionSocketFactory.getSocketFactory())//
                    .register("https", sslSocketFactory).build();
    
            final long timeToLive = getInitParameter(TIME_TO_LIVE_PROPERTY, 5L, Long.class);
            final TimeUnit timeUnit = TimeUnit.valueOf(getInitParameter(TIME_TO_LIVE_TIME_UNIT_PROPERTY, "MINUTES", String.class));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3, future4, future5));
        future2.set(1L);
        future5.set(2L);
        future1.set(3L);
        future3.set(4L);
        future4.set(5L);
    
        long expectedResult = 1L;
        for (ListenableFuture<Long> future : futures) {
          assertEquals((Long) expectedResult, getDone(future));
          expectedResult++;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3, future4, future5));
        future2.set(1L);
        future5.set(2L);
        future1.set(3L);
        future3.set(4L);
        future4.set(5L);
    
        long expectedResult = 1L;
        for (ListenableFuture<Long> future : futures) {
          assertEquals((Long) expectedResult, getDone(future));
          expectedResult++;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    	for (i = 0; i < N; i++)
    		pthread_join(tid[i], 0);
    }
    #endif
    
    // issue 3261
    // libgcc on ARM might be compiled as thumb code, but our 5l
    // can't handle that, so we have to disable this test on arm.
    #ifdef __ARMEL__
    int vabs(int x) {
    	puts("testLibgcc is disabled on ARM because 5l cannot handle thumb library.");
    	return (x < 0) ? -x : x;
    }
    #elif defined(__arm64__) && defined(__clang__)
    int vabs(int x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	}
    	return isdir(gitDir)
    }
    
    /*
     * Initial tree setup.
     */
    
    // The old tools that no longer live in $GOBIN or $GOROOT/bin.
    var oldtool = []string{
    	"5a", "5c", "5g", "5l",
    	"6a", "6c", "6g", "6l",
    	"8a", "8c", "8g", "8l",
    	"9a", "9c", "9g", "9l",
    	"6cov",
    	"6nm",
    	"6prof",
    	"cgo",
    	"ebnflint",
    	"goapi",
    	"gofix",
    	"goinstall",
    	"gomake",
    	"gopack",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top