Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for extractID (0.42 sec)

  1. 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)
  2. src/regexp/testdata/testregex.c

    static char		ts[] = "\t\t\t\t\t\t\t";
    
    static unsigned long
    extract(int* tabs, char* spec, char* re, char* s, char* ans, char* msg, char* accept, regmatch_t* match, int nmatch, int nsub, unsigned long skip, unsigned long level, unsigned long test)
    {
    	if (test & (TEST_ACTUAL|TEST_BASELINE|TEST_FAIL|TEST_OK|TEST_PASS|TEST_SUMMARY))
    	{
    		state.extracted = 1;
    		if (test & TEST_OK)
    		{
    			state.passed++;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

                """
            ),
        ] = _Unset,
        alias: Annotated[
            Optional[str],
            Doc(
                """
                An alternative name for the parameter field.
    
                This will be used to extract the data and for the generated OpenAPI.
                It is particularly useful when you can't use the name you want because it
                is a Python reserved keyword or similar.
                """
            ),
        ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "SBFIZ", argLength: 1, reg: gp11, asm: "SBFIZ", aux: "ARM64BitField"},
    		// extract width bits of arg0 starting at bit lsb and insert at low end of result, remaining high bits are set to the high/sign bit of the extracted bitfield
    		{name: "SBFX", argLength: 1, reg: gp11, asm: "SBFX", aux: "ARM64BitField"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Futures.java

         * cancelled.
         *
         * <p>If the combiner throws an {@code ExecutionException}, the cause of the thrown {@code
         * ExecutionException} will be extracted and returned as the cause of the new {@code
         * ExecutionException} that gets thrown by the returned combined future.
         *
         * <p>Canceling this future will attempt to cancel all the component futures.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

         * cancelled.
         *
         * <p>If the combiner throws an {@code ExecutionException}, the cause of the thrown {@code
         * ExecutionException} will be extracted and returned as the cause of the new {@code
         * ExecutionException} that gets thrown by the returned combined future.
         *
         * <p>Canceling this future will attempt to cancel all the component futures.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // constant, then the output type can be statically determined.
        RankedTensorType out_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!out_ty || !out_ty.hasStaticShape()) return failure();
    
        // Extract out all the constant indices' attributes and verify that data
        // types are static.
        SmallVector<DenseIntElementsAttr, 4> indices;
        indices.reserve(op.getN());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

          }
          return %0 : tensor<32xf32>
        }
    ```
    ### `-tf-extract-head-tail-outside-compilation`
    
    _Extracts head or tail outside compilation to separate host launches before/after device cluster._
    
    This pass extracts a CPU computation cluster with `_xla_outside_compilation`
    annotation from the head or tail of a Device cluster.
    
    For example:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    func regF(r uint32) uint32 {
    	return regVal(r, REG_F0, REG_F31)
    }
    
    // regAddr extracts a register from an Addr.
    func regAddr(a obj.Addr, min, max uint32) uint32 {
    	if a.Type != obj.TYPE_REG {
    		panic(fmt.Sprintf("ill typed: %+v", a))
    	}
    	return regVal(uint32(a.Reg), min, max)
    }
    
    // regIAddr extracts the integer register from an Addr.
    func regIAddr(a obj.Addr) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    		if err == nil && len(rest) == 0 {
    			attributes = append(attributes, attr)
    		}
    	}
    	return attributes
    }
    
    // parseCSRExtensions parses the attributes from a CSR and extracts any
    // requested extensions.
    func parseCSRExtensions(rawAttributes []asn1.RawValue) ([]pkix.Extension, error) {
    	// pkcs10Attribute reflects the Attribute structure from RFC 2986, Section 4.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top