Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 2,299 for False (0.02 sec)

  1. cmd/batch-rotate.go

    			// skip all objects that are newer than specified older duration
    			return false
    		}
    
    		if r.Flags.Filter.NewerThan > 0 && time.Since(info.ModTime) >= r.Flags.Filter.NewerThan {
    			// skip all objects that are older than specified newer duration
    			return false
    		}
    
    		if !r.Flags.Filter.CreatedAfter.IsZero() && r.Flags.Filter.CreatedAfter.Before(info.ModTime) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java

            FileRenameInformation2 info = new FileRenameInformation2(longFileName, false);
            // 20 bytes fixed + 2 * length
            assertEquals(20 + 2 * longFileName.length(), info.size());
        }
    
        @Test
        @DisplayName("Test size calculation with empty filename")
        void testSizeWithEmptyFilename() {
            FileRenameInformation2 info = new FileRenameInformation2("", false);
            assertEquals(20, info.size());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            // Test with false
            searchRenderData.setExistNextPage(false);
            assertFalse(searchRenderData.isExistNextPage());
    
            // Test with true
            searchRenderData.setExistNextPage(true);
            assertTrue(searchRenderData.isExistNextPage());
    
            // Toggle back to false
            searchRenderData.setExistNextPage(false);
            assertFalse(searchRenderData.isExistNextPage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Predicates.java

        return ObjectPredicate.ALWAYS_TRUE.withNarrowedType();
      }
    
      /**
       * Returns a predicate that always evaluates to {@code false}.
       *
       * <p><b>Discouraged:</b> Prefer using {@code x -> false}, but note that lambdas do not have
       * human-readable {@link #toString()} representations and are not serializable.
       */
      public static <T extends @Nullable Object> Predicate<T> alwaysFalse() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. .github/workflows/containers.yml

        branches:
          - master
      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_containers:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 872 bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/RequestWithPathTest.java

            doNothing().when(requestWithPath).setResolveInDfs(false);
            requestWithPath.setResolveInDfs(false);
            verify(requestWithPath, times(1)).setResolveInDfs(false);
    
            // Test with implementation
            testImplementation.setResolveInDfs(true);
            assertTrue(testImplementation.isResolveInDfs());
    
            testImplementation.setResolveInDfs(false);
            assertFalse(testImplementation.isResolveInDfs());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

                log.error("Non-recoverable RDMA error, fallback required", error);
                return false;
            }
        }
    
        /**
         * Attempt to recover from a recoverable RDMA error
         *
         * @param connection RDMA connection to recover
         * @param error the original error
         * @return true if recovery succeeded, false otherwise
         */
        private boolean attemptRecovery(RdmaConnection connection, Exception error) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          return false // Hostname too short to match the pattern.
        }
    
        if ("*." == pattern) {
          return false // Wildcard pattern for single-label domain name -- not permitted.
        }
    
        // Hostname must end with the region of pattern following the asterisk.
        val suffix = pattern.substring(1)
        if (!hostname.endsWith(suffix)) {
          return false // Hostname does not end with the suffix.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  9. cmd/xl-storage-free-version_test.go

    		Name:             "object-name",
    		VersionID:        "00000000-0000-0000-0000-000000000001",
    		IsLatest:         true,
    		Deleted:          false,
    		TransitionStatus: "",
    		DataDir:          "bffea160-ca7f-465f-98bc-9b4f1c3ba1ef",
    		XLV1:             false,
    		ModTime:          time.Now(),
    		Size:             0,
    		Mode:             0,
    		Metadata:         nil,
    		Parts:            nil,
    		Erasure: ErasureInfo{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Mar 02 05:11:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

        public void test_store_and_stop_lifecycle() {
            // Test full lifecycle: store then stop
            final AtomicBoolean storeCalled = new AtomicBoolean(false);
            final AtomicBoolean stopCalled = new AtomicBoolean(false);
            final AtomicBoolean isActive = new AtomicBoolean(false);
    
            dataStore = new DataStore() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top