Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for NEW (0.05 sec)

  1. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("ト", new String[] { "to" });
    
            map.put("ナ", new String[] { "na" });
            map.put("ニ", new String[] { "ni" });
            map.put("ヌ", new String[] { "nu" });
            map.put("ネ", new String[] { "ne" });
            map.put("ノ", new String[] { "no" });
    
            map.put("ハ", new String[] { "ha" });
            map.put("ヒ", new String[] { "hi" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java

      private final ExecutionList list = new ExecutionList();
    
      public void testRunOnPopulatedList() throws Exception {
        Executor exec = Executors.newCachedThreadPool();
        CountDownLatch countDownLatch = new CountDownLatch(3);
        list.add(new MockRunnable(countDownLatch), exec);
        list.add(new MockRunnable(countDownLatch), exec);
        list.add(new MockRunnable(countDownLatch), exec);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultEarModuleTest.groovy

            where:
            lhs || rhs || equals
            new DefaultEarModule("some.jar") | new DefaultEarModule("some-other.jar") | false
            new DefaultEarModule("some.jar") | new DefaultEarModule("some.jar") | true
            new DefaultEarModule(path: "some.jar", altDeployDescriptor: "some.xml") | new DefaultEarModule("some.jar") | false
            new DefaultEarSecurityRole("role", "description") | new DefaultEarSecurityRole("role", "description") | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue31573.go

    		defer f([]*int{new(int)}...)           // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does not escape$"
    		defer f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does not escape$"
    
    		go f()
    		go f(new(int))           // ERROR "... argument does not escape$" "new\(int\) does not escape$"
    		go f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
    
    		go f(nil...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:37:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilterTest.java

            Exclusion exclusion = new Exclusion();
            exclusion.setGroupId("org.apache.maven");
            exclusion.setArtifactId("maven-model");
            ExclusionArtifactFilter filter = new ExclusionArtifactFilter(Collections.singletonList(exclusion));
    
            assertThat(filter.include(artifact), is(true));
        }
    
        @Test
        void testExcludeGroupIdWildcard() {
            Exclusion exclusion = new Exclusion();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 29 15:25:58 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/TransportableActionExecutionSpecSerializerTest.groovy

            def spec = new TransportableActionExecutionSpec(Runnable.class.name, bytes, flatClassLoaderStructure(), new File("/foo"), new File("/project-cache"), usesInternalServices)
    
            when:
            serializer.write(encoder, spec)
            encoder.flush()
    
            and:
            def decoder = new KryoBackedDecoder(new ByteArrayInputStream(outputStream.toByteArray()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java

        Type t1 = new TypeCapture<T1>() {}.capture();
        Type t2 = new TypeCapture<T2>() {}.capture();
        assertEquals(t2, new TypeResolver().where(t1, t2).resolveType(t1));
      }
    
      public <T> void testWhere_genericArrayMapping() {
        Type t = new TypeCapture<T>() {}.capture();
        assertEquals(
            String.class,
            new TypeResolver()
                .where(new TypeCapture<T[]>() {}.capture(), String[].class)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/BootstrapSecurityManagerTest.groovy

            dataOut.writeInt(1) // expect one classpath entry
            dataOut.write(1234) // but the entry is not a complete UTF-8 encoded String
    
            System.in = new ByteArrayInputStream(incompleteStream.toByteArray())
    
            when:
            new BootstrapSecurityManager(new TestClassLoader()).checkPermission(new AllPermission())
    
            then:
            RuntimeException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            expectResourceRead(new ByteArrayInputStream(new byte[4096]))
    
            when:
            def result = accessor.withContent(location, false, action)
    
            then:
            result == "result"
    
            and:
            1 * action.execute(_, _) >> { inputStream, metaData ->
                inputStream.read(new byte[2])
                inputStream.read(new byte[560])
                inputStream.read(new byte[1000])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/exceptions/DefaultMultiCauseExceptionTest.groovy

            def cause1 = new RuntimeException("cause1")
            def cause2 = new RuntimeException("cause2")
            def failure = new TestMultiCauseException("message", [cause1, cause2])
    
            when:
            def baos = new ByteArrayOutputStream()
            new ObjectOutputStream(baos).writeObject(failure)
            def result = new ObjectInputStream(new ByteArrayInputStream(baos.toByteArray())).readObject()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top