Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,110 for xtrue (0.02 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

        TestGuard guard = new TestGuard(true);
        thread2.callAndAssertReturns(enter());
        thread1.callAndAssertBlocks(enterIf(), guard);
        thread2.callAndAssertReturns(leave());
        thread1.assertPriorCallReturns(true, enterIf());
      }
    
      public final void testTryEnterIf_initiallyTrue() throws Exception {
        TestGuard guard = new TestGuard(true);
        thread1.callAndAssertReturns(true, tryEnterIf(), guard);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/prerm

        remove)
            STOP_REQUIRED=true
        ;;
        upgrade)
            if [ "$RESTART_ON_UPGRADE" = "true" ]; then
                STOP_REQUIRED=true
            fi
        ;;
        deconfigure|failed-upgrade)
        ;;
    
        # RedHat ####################################################
        0)
            STOP_REQUIRED=true
        ;;
        1)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ComparisonChainTest.java

      public void testCompareBooleans() {
        assertThat(
                ComparisonChain.start()
                    .compare(true, true)
                    .compare(true, Boolean.TRUE)
                    .compare(Boolean.TRUE, true)
                    .compare(Boolean.TRUE, Boolean.TRUE)
                    .result())
            .isEqualTo(0);
      }
    
      public void testDegenerate() {
        // kinda bogus, but who cares?
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:05:13 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbFileHandleImplTest.java

            stubValidTree(7L, true, true);
            assertThrows(NullPointerException.class, () -> new SmbFileHandleImpl(null, 42, tree, "//server/share", 0, 0, 0, 0, 0L));
        }
    
        @Test
        @DisplayName("getTree() acquires and returns same tree instance")
        void getTree_acquiresAndReturnsTree() {
            when(cfg.isTraceResourceUsage()).thenReturn(false);
            stubValidTree(7L, true, true);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

            !"TE".equals(fieldName, ignoreCase = true) &&
            !"Trailers".equals(fieldName, ignoreCase = true) &&
            !"Transfer-Encoding".equals(fieldName, ignoreCase = true) &&
            !"Upgrade".equals(fieldName, ignoreCase = true)
    
        /**
         * Returns true if [fieldName] is content specific and therefore should always be used
         * from cached headers.
         */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

                    deleteSearchLogCalled[0] = true;
                }
            };
    
            JobLogService jobLogService = new JobLogService() {
                @Override
                public void deleteBefore(int days) {
                    deleteJobLogCalled[0] = true;
                }
    
                @Override
                public void updateStatus() {
                    updateJobLogStatusCalled[0] = true;
                }
            };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            doc1.put("title", "Test Document 1");
            documentItems.add(doc1);
    
            try {
                userInfoHelper.storeQueryId("query1", documentItems);
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_storeQueryId_emptyDocuments() {
            UserInfoHelper userInfoHelper = new UserInfoHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  8. okhttp/src/jvmMain/resources/META-INF/native-image/okhttp/okhttp/reflect-config.json

    [
      {
        "name": "kotlin.internal.jdk8.JDK8PlatformImplementations",
        "allDeclaredConstructors":true
      },
      {
        "name": "kotlin.KotlinVersion",
        "allPublicMethods": true,
        "allDeclaredFields":true,
        "allDeclaredMethods":true,
        "allDeclaredConstructors":true
      },
      {
        "name": "kotlin.KotlinVersion[]"
      },
      {
        "name": "kotlin.KotlinVersion$Companion"
      },
      {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 438 bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

            assertThat(beanDesc.hasFieldDesc("HOGE"), is(true));
            final FieldDesc fieldDesc = beanDesc.getFieldDesc("HOGE");
            assertThat(fieldDesc.getFieldName(), is("HOGE"));
            assertThat(beanDesc.hasFieldDesc("aaa"), is(true));
            assertThat(beanDesc.hasFieldDesc("aaA"), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #   [true]
        #     You should always write the title of outsideSql.
        #     If it doesn't exist, the OutsideSqlTest task fails.
        #
        #; isRequiredSqlTitle = true
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isRequiredSqlDescription: (NotRequired - Default true)
        #   [true]
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
Back to top