Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 725 for fixes (1.43 sec)

  1. src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java

            // Perform actual directory enumeration
            SmbFile[] files = smbFile.listFiles();
    
            // Update cache if we have a directory lease
            if (leaseKey != null) {
                dirManager.updateDirectoryCache(directoryPath, Arrays.asList(files));
            }
    
            return files;
        }
    
        /**
         * Get directory lease manager from tree handle
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

    /**
     * Creator for protected words dictionary files.
     * This class manages the creation and registration of protected words dictionary files.
     */
    public class ProtwordsCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class);
    
        /**
         * Constructor for ProtwordsCreator.
         * Initializes the creator with a pattern to match protwords files.
         */
        public ProtwordsCreator() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionIT.java

     * under the License.
     */
    package org.apache.maven.artifact.versioning;
    
    import java.io.IOException;
    import java.io.InterruptedIOException;
    import java.nio.file.FileVisitResult;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.nio.file.SimpleFileVisitor;
    import java.nio.file.attribute.BasicFileAttributes;
    import java.util.regex.Pattern;
    
    import org.junit.jupiter.api.Test;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/context/SingletonContextTest.java

    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.junit.jupiter.api.Assertions.fail;
    
    import java.io.IOException;
    import java.lang.reflect.Field;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Properties;
    
    import org.junit.jupiter.api.AfterEach;
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.io.TempDir;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

    import jcifs.internal.util.SMBUtil;
    
    /**
     * File System Control Code (FSCC) structure for File Rename Information.
     * Used in SMB2/SMB3 set file information operations to rename files or directories,
     * with support for specifying whether to replace existing files with the same name.
     *
     * @author mbechler
     */
    public class FileRenameInformation2 implements FileInformation {
    
        private boolean replaceIfExists;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. docs/smb3-features/02-persistent-handles-design.md

            try {
                Files.deleteIfExists(handleFile);
            } catch (IOException e) {
                log.error("Failed to remove persisted handle", e);
            }
        }
        
        private void loadPersistedHandles() {
            try (DirectoryStream<Path> stream = Files.newDirectoryStream(
                    stateDirectory, "*.handle")) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading bad word files to the Fess search engine.
     * This form is used in the admin interface to upload bad word dictionary files
     * that contain words to be filtered from search results.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing bad words to be uploaded.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. deploy_website.sh

    ./gradlew dokkaHtmlMultiModule
    
    mv ./build/dokka/htmlMultiModule docs/5.x
    
    # Copy in special files that GitHub wants in the project root.
    cat README.md | grep -v 'project website' > docs/index.md
    cp CHANGELOG.md docs/changelogs/changelog.md
    cp CONTRIBUTING.md docs/contribute/contributing.md
    
    # Build the site and push the new files up to GitHub
    python3 -m venv venv
    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. .github/workflows/test.yml

              CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
          - name: Store coverage files
            uses: actions/upload-artifact@v4
            with:
              name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
              path: coverage
              include-hidden-files: true
    
      coverage-combine:
        needs: [test]
        runs-on: ubuntu-latest
        steps:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * A dictionary creator for synonym files.
     * This class is responsible for creating {@link SynonymFile} instances
     * from files that match the pattern "synonym.*\\.txt".
     */
    public class SynonymCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(SynonymCreator.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top