Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for extractJob (0.41 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/job.go

    	return extractJob(job, fieldManager, "")
    }
    
    // ExtractJobStatus is the same as ExtractJob except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    func ExtractJobStatus(job *apibatchv1.Job, fieldManager string) (*JobApplyConfiguration, error) {
    	return extractJob(job, fieldManager, "status")
    }
    
    func extractJob(job *apibatchv1.Job, fieldManager string, subresource string) (*JobApplyConfiguration, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    //		Doc:              analysisutil.MustExtractDoc(doc, "halting"),
    //		...
    //	}
    func MustExtractDoc(content, name string) string {
    	doc, err := ExtractDoc(content, name)
    	if err != nil {
    		panic(err)
    	}
    	return doc
    }
    
    // ExtractDoc extracts a section of a package doc comment from the
    // provided contents of an analyzer package's doc.go file.
    //
    // A section is a portion of the comment between one heading and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/Extractor.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.extractor;
    
    import java.io.InputStream;
    import java.util.Map;
    
    import org.codelibs.fess.crawler.entity.ExtractData;
    
    /**
     * @author shinsuke
     *
     */
    public interface Extractor {
    
        ExtractData getText(InputStream in, Map<String, String> params);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 905 bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    		class="org.codelibs.fess.crawler.extractor.impl.MsPowerPointExtractor" />
    	<component name="msPublisherExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.MsPublisherExtractor" />
    	<component name="msVisioExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.MsVisioExtractor" />
    	<component name="pdfExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.PdfExtractor" />
    	<component name="lhaExtractor"
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. src/main/resources/crawler/extractor+tikaExtractor.xml

    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    	<component name="tikaExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.TikaExtractor">
    		<property name="maxCompressionRatio">2</property>
    		<property name="maxUncompressionSize">10000000</property>
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 25 12:46:12 UTC 2019
    - 461 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/hkdf/hkdf.go

    func Extract(hash func() hash.Hash, secret, salt []byte) []byte {
    	if salt == nil {
    		salt = make([]byte, hash().Size())
    	}
    	extractor := hmac.New(hash, salt)
    	extractor.Write(secret)
    	return extractor.Sum(nil)
    }
    
    type hkdf struct {
    	expander hash.Hash
    	size     int
    
    	info    []byte
    	counter byte
    
    	prev []byte
    	buf  []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

                }
            }
            def extractor = new DefaultModelSchemaExtractor([strategy])
            def store = new DefaultModelSchemaStore(extractor)
    
            then:
            store.getSchema(CustomThing) instanceof ScalarValueSchema
        }
    
        def "custom strategy can register dependency on other type"() {
            def strategy = Mock(ModelSchemaExtractionStrategy)
            def extractor = new DefaultModelSchemaExtractor([strategy])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("application/pdf", "extractor/test.pdf", "hoge.pdf");
    
            assertContentType("application/gzip", "extractor/gz/test.tar.gz", "hoge.tar.gz");
            assertContentType("application/zip", "extractor/zip/test.zip", "hoge.zip");
            assertContentType("application/x-lharc", "extractor/lha/test.lzh", "hoge.lzh"); // TODO is it correct?
    
            assertContentType("application/xml", "extractor/test.mm", "hoge.mm");
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java

        protected Map<String, Extractor> extractorMap = new HashMap<>();
    
        public void addExtractor(final String key, final Extractor extractor) {
            if (StringUtil.isBlank(key)) {
                throw new CrawlerSystemException("The key is null.");
            }
            if (extractor == null) {
                throw new CrawlerSystemException("The extractor is null.");
            }
            extractorMap.put(key, extractor);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

            final CommandExtractor extractor = new CommandExtractor();
            extractor.executionTimeout = 1000L;
            extractor.command = getCommand(scriptFile);
            final Map<String, String> params = new HashMap<String, String>();
            try {
                final ExtractData data = extractor.getText(new FileInputStream(contentFile), params);
                fail(data.toString());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top