Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 716 for actions (0.26 sec)

  1. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

       * call cancel() and be unable to cancel the delegate.
       * There are a number of ways to solve this, none of which are very pretty, and it is currently
       * believed to be a purely theoretical problem (since the other actions should supply sufficient
       * write-barriers).
       */
    
      @LazyInit private @Nullable ListenableFuture<V> delegateRef;
      @LazyInit private @Nullable ScheduledFuture<?> timer;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        // you should remove the 'final' if you need to override this
        /**
         * Hook method called before action execution.
         * This method refreshes the user information if a user is logged in
         * and delegates to the view helper's action hook.
         *
         * @param runtime the action runtime context
         * @return the action response, or null to continue with normal processing
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

         */
        protected void insertLogin(final Object member) {
            // nothing
        }
    
        /**
         * Checks if the current user has permission to access the given resource.
         * For admin actions, verifies that the user has appropriate admin roles or
         * meets the secured annotation requirements.
         *
         * @param resource the login handling resource to check permission for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. docs/SMB3_IMPLEMENTATION_PLAN.md

       - Witness protocol achieves <5 second failover time
    4. **Compatibility**: Works with Windows Server 2016+ and Azure Files
    
    ## Next Steps
    
    1. **Immediate Actions**:
       - Set up Windows Server test environment
       - Create detailed technical specifications for Phase 1
       - Identify and evaluate Java RDMA libraries
    
    2. **Phase 1 Kickoff**:
       - Begin SMB3 lease implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java

                FileNotifyInformation.FILE_ACTION_REMOVED_STREAM, FileNotifyInformation.FILE_ACTION_MODIFIED_STREAM })
        void testReadParametersWireFormatWithVariousActions(int action) throws Exception {
            byte[] buffer = createSingleNotificationBuffer("testfile.dat", action);
    
            int result = response.readParametersWireFormat(buffer, 0, buffer.length);
    
            assertTrue(result > 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                }
            });
        }
    
        /**
         * Records a statistics action for the specified crawler object.
         *
         * @param keyObj the crawler object being tracked
         * @param action the statistics action to record
         */
        public void record(final Object keyObj, final StatsAction action) {
            record(keyObj, action.name().toLowerCase(Locale.ENGLISH));
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

         * unsafely published. (The Entry object might even be newly created by each iterator.next()
         * call, so we can't assume that writes to the Entry have been safely published by some other
         * synchronization actions.)
         *
         * All that said: I haven't actually managed to make this particular test produce a TSAN error
         * for the field accesses in MapIteratorCache. This test *has* found other TSAN errors,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

        @DisplayName("Should handle various file actions")
        @ParameterizedTest
        @CsvSource({ "1, FILE_ACTION_ADDED", "2, FILE_ACTION_REMOVED", "3, FILE_ACTION_MODIFIED", "4, FILE_ACTION_RENAMED_OLD_NAME",
                "5, FILE_ACTION_RENAMED_NEW_NAME", "6, FILE_ACTION_ADDED_STREAM", "7, FILE_ACTION_REMOVED_STREAM",
                "8, FILE_ACTION_MODIFIED_STREAM" })
        void testDifferentFileActions(int action, String description) throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimap.java

       * Multimaps.asMap(multimap).forEach((key, valueCollection) -> action())}.
       *
       * @since 21.0
       */
      default void forEach(BiConsumer<? super K, ? super V> action) {
        checkNotNull(action);
        entries().forEach(entry -> action.accept(entry.getKey(), entry.getValue()));
      }
    
      /**
       * Returns a view of this multimap as a {@code Map} from each distinct key to the nonempty
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            if (!sambaContainer.isRunning()) {
                assumeTrue(false, "Samba container is not running - skipping test");
            }
    
            // Additional wait for CI environments like GitHub Actions
            Thread.sleep(2000);
    
            // Test listing available shares with retry logic for CI environments
            CIFSContext listContext = createFreshContext();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top