Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,031 for CONTENT (0.1 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java

        default void write(@Nonnull T content, @Nonnull Path path) throws XmlWriterException {
            write(XmlWriterRequest.<T>builder().content(content).path(path).build());
        }
    
        default void write(@Nonnull T content, @Nonnull OutputStream outputStream) throws XmlWriterException {
            write(XmlWriterRequest.<T>builder()
                    .content(content)
                    .outputStream(outputStream)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/mime/multipart/testdata/nested-mime

    L1:--e89a8ff1c1e83553e304be640612
    L2:Content-Type: multipart/alternative; boundary=e89a8ff1c1e83553e004be640610
    L3:
    L4:--e89a8ff1c1e83553e004be640610
    L5:Content-Type: text/plain; charset=UTF-8
    L6:
    L7:*body*
    L8:
    L9:--e89a8ff1c1e83553e004be640610
    L10:Content-Type: text/html; charset=UTF-8
    L11:
    L12:<b>body</b>
    L13:
    L14:--e89a8ff1c1e83553e004be640610--
    L15:--e89a8ff1c1e83553e304be640612
    L16:Content-Type: image/png; name="x.png"
    L17:Content-Disposition: attachment; 
    L18:	filename="x.png"
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/archive/impl/FileZipInputTest.groovy

        def "can read zip entry content a second time"() {
            def file = makeZip("foo.zip")
            def zipInput = FileZipInput.create(file)
    
            when:
            def zipEntry = zipInput.iterator().next()
            def content = zipEntry.content
    
            then:
            content == ZIP_ENTRY_CONTENT.bytes
    
            when:
            content = zipEntry.content
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

            params.put("resourceName", "test.odt");
            ExtractData extractData = jodExtractor.getText(in, params);
            String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
            logger.info(content);
            assertTrue(content.contains("テスト"));
        }
    
        public void test_getText_ooow_as() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test_as.odt");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

         *
         * @param content
         */
        void debug(CharSequence content);
    
        /**
         * Send a message (and accompanying exception) to the user in the <b>debug</b> error level.<br>
         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content
         * @param error
         */
        void debug(CharSequence content, Throwable error);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java

         *
         * @param content The String representation, may be empty or {@code null}.
         * @param location The location to report for this use, may be {@code null}.
         */
        public StringSource(CharSequence content, String location) {
            this.content = (content != null) ? content.toString() : "";
            this.location = (location != null) ? location : "(memory)";
            this.hashCode = this.content.hashCode();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         *
         * @return The charset. Returns null when this resource is not available as a file.
         */
        @Nullable
        Charset getCharset();
    
        /**
         * Returns true when the content of this resource is cached in-heap or uses a hard-coded value. Returns false when the content requires IO on each query.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/QueryCommandTest.java

            assertQueryBuilder("content", "test", MatchPhraseQueryBuilder.class);
            assertQueryBuilder("content", "a", MatchPhraseQueryBuilder.class);
            assertQueryBuilder("content", "あ", PrefixQueryBuilder.class);
            assertQueryBuilder("content", "ああ", MatchPhraseQueryBuilder.class);
            assertQueryBuilder("content", "ア", PrefixQueryBuilder.class);
            assertQueryBuilder("content", "アア", MatchPhraseQueryBuilder.class);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/io/ioutil/example_test.go

    	content := []byte("temporary file's content")
    	tmpfile, err := ioutil.TempFile("", "example.*.txt")
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	defer os.Remove(tmpfile.Name()) // clean up
    
    	if _, err := tmpfile.Write(content); err != nil {
    		tmpfile.Close()
    		log.Fatal(err)
    	}
    	if err := tmpfile.Close(); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func ExampleReadFile() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 23:03:58 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/DownloadedUriTextResourceTest.groovy

            when:
            downloadedFile.text = "Some content"
            underTest = new DownloadedUriTextResource("Test description", sourceUri, "text/html", downloadedFile, resolver)
    
            then:
            underTest.getCharset() == Charset.forName("UTF-8")
        }
    
        def "should return default charset when content type is missing"() {
            when:
            downloadedFile.text = "Some content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top