Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,655 for creator (0.56 sec)

  1. src/main/resources/my_creator.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<include path="convention.xml"/>
        <component name="pagerCreator" class="org.codelibs.fess.mylasta.creator.PagerCreator"/>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 03 14:03:30 GMT 2015
    - 296 bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/env/suggest/resources/my_creator.xml

    Shinsuke Sugaya <******@****.***> 1518442737 +0900
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 170 bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/env/thumbnail/resources/my_creator.xml

    Shinsuke Sugaya <******@****.***> 1518442737 +0900
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 170 bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/crawler/resources/my_creator.xml

    Shinsuke Sugaya <******@****.***> 1518442737 +0900
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 170 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

        fun add(diagnostic: KtDiagnosticFactory0, creator: KtFirDiagnostic0Creator) {
            conversions[diagnostic] = creator
        }
    
        fun <A> add(diagnostic: KtDiagnosticFactory1<A>, creator: KtFirDiagnostic1Creator<A>) {
            conversions[diagnostic] = creator
        }
    
        fun <A, B> add(diagnostic: KtDiagnosticFactory2<A, B>, creator: KtFirDiagnostic2Creator<A, B>) {
            conversions[diagnostic] = creator
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Feb 15 08:13:51 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        var creator = cache.edit("k1")!!
        creator.setString(0, "ABC")
        creator.setString(1, "DE")
        creator.commit()
        cache.flush()
        filesystem.copy(journalFile, journalBkpFile)
        creator = cache.edit("k2")!!
        creator.setString(0, "F")
        creator.setString(1, "GH")
        creator.commit()
        cache.close()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                        for (final DictionaryCreator creator : creatorList) {
                            final DictionaryFile<? extends DictionaryItem> file = creator.create(path, timestamp);
                            if (file != null) {
                                return file;
                            }
                        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                } finally {
                    stk.pop();
                }
            }
    
            @Override
            protected ActivationOS.Builder transformActivationOS_Name(
                    Supplier<? extends ActivationOS.Builder> creator, ActivationOS.Builder builder, ActivationOS target) {
                stk.push(nextFrame("name"));
                try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                    logger.warn("Failed to create system properties file.", e);
                }
            }
    
            final SuggestCreator creator = ComponentUtil.getComponent(SuggestCreator.class);
            final LocalDateTime startTime = LocalDateTime.now();
            int ret = creator.create();
            if (ret == 0) {
                ret = creator.purge(startTime);
            }
            return ret;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. cmd/metacache-stream.go

    	if w == nil {
    		return errors.New("metacacheWriter: nil writer")
    	}
    	if len(objs) == 0 {
    		return nil
    	}
    	if w.creator != nil {
    		err := w.creator()
    		w.creator = nil
    		if err != nil {
    			return fmt.Errorf("metacacheWriter: unable to create writer: %w", err)
    		}
    		if w.mw == nil {
    			return errors.New("metacacheWriter: writer not initialized")
    		}
    	}
    	for _, o := range objs {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 19.5K bytes
    - Viewed (0)
Back to top