Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for NEW (0.07 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/SnapshotSerializerTest.groovy

            value == written
    
            where:
            array << [
                new byte[]{42},
                new short[]{42},
                new int[]{42},
                new long[]{42},
                new float[]{42.0},
                new double[]{42.0},
                new char[]{'*'},
                new boolean[]{true}
            ]
            value = new ArrayOfPrimitiveValueSnapshot(array)
        }
    
        def "serializes list properties"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                "new File(\"${filePath}\").$checkKind()"
            }
    
            @Override
            String getJavaExpression() {
                "new File(\"${filePath}\").$checkKind()"
            }
        }
    
        static FileCheck fileExists(String filePath) {
            new FileCheck(filePath, "exists")
        }
    
        static FileCheck fileIsFile(String filePath) {
            new FileCheck(filePath, "isFile")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

        hasher.putShort((short) 0x0201);
        hasher.assertBytes(new byte[] {1, 2});
      }
    
      public void testInt() {
        TestHasher hasher = new TestHasher();
        hasher.putInt(0x04030201);
        hasher.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
      public void testLong() {
        TestHasher hasher = new TestHasher();
        hasher.putLong(0x0807060504030201L);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStatsTest.groovy

            return [
                    new GarbageCollectionEvent(0000, new MemoryUsage(0, 100, 1000, 1000), 1),
                    new GarbageCollectionEvent(1000, new MemoryUsage(0, 250, 1000, 1000), 2),
                    new GarbageCollectionEvent(2000, new MemoryUsage(0, 500, 1000, 1000), 3),
                    new GarbageCollectionEvent(3000, new MemoryUsage(0, 750, 1000, 1000), 6),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            assertEquals("\"aaa bbb\"", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb" })));
            assertEquals("\"aaa bbb\" \"ccc\"", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc" })));
            assertEquals("\"a\\\"aa\"", getAsQuery(Collections.singletonMap(k, new String[] { "a\"aa" })));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/ContextAwareExceptionTest.groovy

            def ignored = new RuntimeException()
            def childCause1 = new RuntimeException(ignored)
            def childCause2 = new RuntimeException()
            def childCause3 = new TestContextualException(childCause2)
            def childCause4 = new TestContextualException(childCause3)
            def cause = new DefaultMultiCauseException("broken", childCause1, childCause4)
            def e = new ContextAwareException(cause)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/JarFilePackageListerTest.groovy

                it.putNextEntry(new ZipEntry("com/a/b/c/"))
                it.putNextEntry(new ZipEntry("com/a/b/c/A.class"))
                it.putNextEntry(new ZipEntry("com/a/b/c/B.class"))
                it.putNextEntry(new ZipEntry("com/a/b/"))
                it.putNextEntry(new ZipEntry("com/a/b/C.class"))
                it.putNextEntry(new ZipEntry("com/"))
                it.putNextEntry(new ZipEntry("com/D.class"))
                it.putNextEntry(new ZipEntry("E.class"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

        private static final List<KnownArchitecture> KNOWN_ARCHITECTURES = asList(
                X86,
                X86_64,
                IA_64,
                ARM_V7,
                AARCH64,
                new KnownArchitecture("ppc"),
                new KnownArchitecture("ppc64"),
                new KnownArchitecture("sparc-v8", "sparc", "sparc32"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseSynchronizationTasksCrossVersionSpec.groovy

            def projectsLoadedHandler = new IntermediateResultHandlerCollector<Void>()
            def buildFinishedHandler = new IntermediateResultHandlerCollector<EclipseModel>()
            def out = new ByteArrayOutputStream()
    
            when:
            withConnection { connection ->
                connection.action().projectsLoaded(new TellGradleToRunSyncTasks(), projectsLoadedHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/zz_generated.deepcopy.go

    	*out = *in
    	if in.MaxPerCore != nil {
    		in, out := &in.MaxPerCore, &out.MaxPerCore
    		*out = new(int32)
    		**out = **in
    	}
    	if in.Min != nil {
    		in, out := &in.Min, &out.Min
    		*out = new(int32)
    		**out = **in
    	}
    	if in.TCPEstablishedTimeout != nil {
    		in, out := &in.TCPEstablishedTimeout, &out.TCPEstablishedTimeout
    		*out = new(v1.Duration)
    		**out = **in
    	}
    	if in.TCPCloseWaitTimeout != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 15:12:28 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top