Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 326 for extension (0.07 sec)

  1. src/test/java/org/codelibs/opensearch/extension/ExtensionPlugin.java

    import org.codelibs.opensearch.extension.analysis.KanjiNumberFilterFactory;
    import org.codelibs.opensearch.extension.analysis.NGramSynonymTokenizerFactory;
    import org.codelibs.opensearch.extension.analysis.NumberConcatenationFilterFactory;
    import org.codelibs.opensearch.extension.analysis.PatternConcatenationFilterFactory;
    import org.codelibs.opensearch.extension.analysis.PosConcatenationFilterFactory;
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Tue Jul 08 14:37:06 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

         * Gets the extractor for the specified file extension.
         *
         * @param ext the file extension
         * @return the extractor for the extension, or null if not found
         */
        private Extractor getExtractor(final String ext) {
            return extractorMap.get(ext);
        }
    
        /**
         * Gets the output extension for the specified input extension.
         *
         * @param extension the input file extension
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MimeMap.java

            return getMimeType(extension, "application/octet-stream");
        }
    
        /**
         * Returns the MIME type for the given file extension with a custom default.
         *
         * @param extension the file extension to look up (without the dot)
         * @param def the default MIME type to return if no mapping is found
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceUtil.java

         * @param extension
         *            The extension.
         * @return The resource path.
         */
        public static String getResourcePath(final String path, final String extension) {
            assertArgumentNotNull("path", path);
    
            if (extension == null) {
                return path;
            }
            final String ext = "." + extension;
            if (path.endsWith(ext)) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/loong64.go

    	case reg >= loong64.REG_X0 && reg <= loong64.REG_X31:
    		simd_type = loong64.LASX
    	default:
    		return errors.New("Loong64 extension: invalid LSX/LASX register: " + fmt.Sprintf("%d", reg))
    	}
    
    	if isIndex {
    		arng_type, ok = loong64ElemExtMap[ext]
    		if !ok {
    			return errors.New("Loong64 extension: invalid LSX/LASX arrangement type: " + ext)
    		}
    
    		a.Reg = loong64.REG_ELEM
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Aug 05 17:31:25 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @param extension the artifact extension, or {@code null} is unspecified
         * @return coordinates used to point to the artifact
         *
         * @see ArtifactCoordinatesFactory#create(Session, String, String, String, String)
         */
        @Nonnull
        ArtifactCoordinates createArtifactCoordinates(String groupId, String artifactId, String version, String extension);
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  7. tests/gaussdb_test.go

    	t.Skipf("This test case skipped, because of gaussdb does not have 'uuid-ossp' extension")
    	if DB.Dialector.Name() != "gaussdb" {
    		t.Skip()
    	}
    
    	if err := DB.Exec(`create extension if not exists "uuid-ossp"`).Error; err != nil {
    		t.Fatalf("Failed to create 'uuid-ossp' extension, but got error %v", err)
    	}
    
    	DB.Migrator().DropTable(&Post{}, &Category{}, "post_categories")
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSources.kt

        level = DeprecationLevel.HIDDEN,
      )
      @JvmStatic
      fun createFactory(client: OkHttpClient) = client.asEventSourceFactory()
    
      @Deprecated(
        message = "Moved to extension function.",
        replaceWith =
          ReplaceWith(
            expression = "callFactory.asEventSourceFactory()",
            imports = ["okhttp3.sse.EventSource.Factory.Companion.asEventSourceFactory"],
          ),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/util/MimeMapTest.java

            }
    
            @Test
            @DisplayName("Should handle extensions with special characters")
            void testSpecialCharacterExtensions() throws IOException {
                // Test extensions that are definitely not in the map
                assertEquals("application/octet-stream", mimeMap.getMimeType("file.ext"));
                assertEquals("application/octet-stream", mimeMap.getMimeType("@#$%"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. plugin.xml

    		<delete dir="${plugins.dir}" />
    		<mkdir dir="${plugins.dir}" />
    		<!-- analysis-extension -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="analysis-extension" />
    			<param name="plugin.version" value="3.2.0" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
Back to top