Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for _move (0.03 sec)

  1. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            /**
             * Get the source node for move operations
             *
             * @return source node name
             */
            public String getSourceNode() {
                return sourceNode;
            }
    
            /**
             * Sets the source node for move operations.
             *
             * @param sourceNode the name of the source node in a share move operation
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            }
        }
    
        /**
         * Moves to a specific page.
         * @param form The search form.
         * @param move The number of pages to move.
         * @return The HTML response.
         */
        protected HtmlResponse doMove(final SearchForm form, final int move) {
            int start = fessConfig.getPagingSearchPageStartAsInteger();
            if (form.pn != null) {
                int pageNumber = form.pn;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse move(final ListForm form) {
            saveToken();
            return doMove(form, 0);
        }
    
        /**
         * Handles pagination movement logic.
         *
         * @param form the list form containing current state
         * @param move the direction to move (-1 for previous, 0 for specific page, 1 for next)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  4. src/main/java/jcifs/internal/witness/WitnessEventType.java

     * can be notified about.
     */
    public enum WitnessEventType {
        /**
         * Resource state changed - general resource state modification
         */
        RESOURCE_CHANGE(1),
    
        /**
         * Client should move to different node - directed failover
         */
        CLIENT_MOVE(2),
    
        /**
         * Share moved to different node - share mobility event
         */
        SHARE_MOVE(3),
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. docs/smb3-features/06-witness-protocol-design.md

        // Schedule reconnection attempt
        scheduleReconnection(1000);  // 1 second delay
    }
    
    private void handleClientMove(WitnessNotification notification) {
        // Server is asking client to move to different node
        log.info("Client move requested for resource: {}", notification.getResourceName());
        
        List<WitnessNotification.WitnessIPAddress> newAddresses = notification.getNewIPAddresses();
        if (!newAddresses.isEmpty()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java

                }
    
                if (next == 0) {
                    // Last entry - advance by the full structure size
                    bufferIndex += 152;
                    break;
                }
    
                // Move to next entry based on Next offset
                bufferIndex += next;
            }
    
            return bufferIndex - start;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

                    deleted = true;
                } catch (SmbException e) {
                    if (i < 2) {
                        log.debug("Retry delete in move, attempt {}", i + 1);
                        Thread.sleep(500);
                    } else {
                        log.warn("Could not delete source after move, but continuing");
                        deleted = true; // Proceed anyway
                    }
                }
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  8. .github/workflows/maven.yml

                unzip maven-dist/apache-maven-*-bin.zip -d maven-local
                # Get the name of the extracted directory
                MAVEN_DIR=$(ls maven-local)
                # Move contents up one level
                mv "maven-local/$MAVEN_DIR"/* maven-local/
                rm -r "maven-local/$MAVEN_DIR"
              else
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Aug 25 07:07:00 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbSessionImpl.java

            scheduleReconnection(getContext().getConfig().getWitnessReconnectDelay());
        }
    
        /**
         * Handle client move events
         */
        private void handleClientMove(WitnessNotification notification) {
            // Server is asking client to move to different node
            log.info("Client move requested for resource: {}", notification.getResourceName());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/LenientSerializableTester.java

     * parameter for non-GWT, non-test files, and it didn't seem worth adding one for this unusual case.
     */
    @GwtCompatible
    @NullUnmarked
    final class LenientSerializableTester {
      /*
       * TODO(cpovirk): move this to c.g.c.testing if we allow for c.g.c.annotations dependencies so
       * that it can be GWTified?
       */
      @CanIgnoreReturnValue
      @GwtIncompatible // SerializableTester
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top