Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for extractJob (2.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.extractor.impl;
    
    import java.io.BufferedInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.charset.Charset;
    import java.util.Map;
    import java.util.regex.Matcher;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. cmd/handler-utils_test.go

    		if testCase.expectedCode != actualCode {
    			t.Errorf("Test %d: Expected the APIErrCode to be %d, but instead found %d", i+1, testCase.expectedCode, actualCode)
    		}
    	}
    }
    
    // Tests validate metadata extraction from http headers.
    func TestExtractMetadataHeaders(t *testing.T) {
    	testCases := []struct {
    		header     http.Header
    		metadata   map[string]string
    		shouldFail bool
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // XLA-compiled. This is only needed if
      // - `upgrade_legacy` is true
      // - upgrading legacy features of the graph (which includes functionalization)
      //   runs before compilation cluster extraction (as for MLIR-based TPU bridge)
      // - session runtime is used (session runtime has issues with function names
      //   rewritten by functionalization).
      // Otherwise, this parameter should be set to false.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractPlatformToolProvider.java

            throw unavailableTool("Static library archiver is not available");
        }
    
        protected Compiler<?> createSymbolExtractor() {
            throw unavailableTool("Symbol extractor is not available");
        }
    
        protected Compiler<?> createStripper() {
            throw unavailableTool("Stripper is not available");
        }
    
        @Override
        public String getObjectFileExtension() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtils.java

         * Mock objects generated via {@link Proxy#newProxyInstance(ClassLoader, Class[], java.lang.reflect.InvocationHandler)}
         * lose their generic type parameters and can confuse schema extraction. This way we can ignore these
         * declarations, and use the ones from the proxied interfaces instead.
         *
         * @param declaringMethods declarations of the same method from different types in the type hierarchy. They are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. test/codegen/bitfield.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    // This file contains codegen tests related to bit field
    // insertion/extraction simplifications/optimizations.
    
    func extr1(x, x2 uint64) uint64 {
    	return x<<7 + x2>>57 // arm64:"EXTR\t[$]57,"
    }
    
    func extr2(x, x2 uint64) uint64 {
    	return x<<7 | x2>>57 // arm64:"EXTR\t[$]57,"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top