Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 202 for get_text (0.43 sec)

  1. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/StyledTextBuildOperationProgressDetails.java

        interface Span {
    
            /**
             * Always a value name of {@code org.gradle.internal.logging.text.StyledTextOutput.Style}.
             */
            String getStyleName();
    
            String getText();
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

            boolean hasName = call.getMethod() instanceof ConstantExpression && call.getMethod().getText().equals(name);
            return hasName && targetIsThis(call);
        }
    
        public static boolean targetIsThis(MethodCallExpression call) {
            Expression target = call.getObjectExpression();
            return target instanceof VariableExpression && target.getText().equals("this");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tfcompile.bzl

            the given namespace(s), or if no namespaces are given, within the global
            namespace.
          gen_test: If True, also generate a cc_test rule that builds a simple
            test and benchmark.
          gen_benchmark: If True, also generate a binary with a simple benchmark.
            Unlike the output of gen_test, this benchmark can be run on android.
          gen_compiler_log: If True, dumps XLA:CPU debug output to a log file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

            final Map<String, String> params = new HashMap<String, String>();
            //final ExtractData text = extractor.getText(new ByteArrayInputStream(FileUtils.readFileToByteArray(new File(filePath))), params);
            final ExtractData text = extractor.getText(new ByteArrayInputStream(testStr.getBytes()), params);
            assertEquals(content, text.getContent());
        }
    
        // TODO other tests
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

        return
      }
    }
    
    // -----
    
    // CHECK-LABEL: module @handles_iterators
    module @handles_iterators attributes {tf_saved_model.semantics} {
      // CHECK-LABEL: @get_next
      func.func private @get_next(%arg0: tensor<!tf_type.resource>) -> tensor<200x10xf32> {
        // CHECK: %0 = "tf.Iterator"
        // CHECK-SAME: shared_name = "foo_iterator"
        // CHECK: "tf.IteratorGetNext"(%0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            def candidate3 = tmpDir.createFile("dir3/cc")
            def file = tmpDir.createFile("dir4/cc.bin")
    
            given:
            candidate1.setText("!<symlink>", "utf-8")
            candidate2.setText("!<symlink:abcd.bin", "utf-8")
            candidate3.setText("")
            os.getExecutableName("cc") >> "cc.bin"
            os.path >> [candidate1.parentFile, candidate2.parentFile, candidate3.parentFile, file.parentFile]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

        protected Properties mailProperties = new Properties();
    
        /* (non-Javadoc)
         * @see org.codelibs.robot.extractor.Extractor#getText(java.io.InputStream, java.util.Map)
         */
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            final Properties props = new Properties(mailProperties);
            if (params != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loong64/obj.go

    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Machoreloc1:      machoreloc1,
    		Gentext:          gentext,
    
    		ELF: ld.ELFArch{
    			Linuxdynld:     "/lib64/ld-linux-loongarch-lp64d.so.1",
    			LinuxdynldMusl: "/lib/ld-musl-loongarch64.so.1",
    			Freebsddynld:   "XXX",
    			Openbsddynld:   "XXX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 13:49:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/StyledLabel.java

    import java.util.List;
    
    /**
     * A label where its text can be styled.
     */
    public interface StyledLabel extends Label {
        void setText(List<StyledTextOutputEvent.Span> spans);
        void setText(StyledTextOutputEvent.Span span);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 958 bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TextExtractor.java

    /**
     * @author shinsuke
     *
     */
    public class TextExtractor extends AbstractExtractor {
    
        protected String encoding = Constants.UTF_8;
    
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            if (in == null) {
                throw new CrawlerSystemException("The inputstream is null.");
            }
            try {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top