Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 932 for encoding (0.06 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/encoding.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="encodingHelper" class="org.codelibs.fess.crawler.helper.EncodingHelper">
    		<postConstruct name="addEncodingMapping">
    			<arg>"unicode"</arg>
    			<arg>"UTF-16LE"</arg>
    		</postConstruct>
    	</component>
    Registered: 2025-05-25 03:50
    - Last Modified: 2017-06-16 13:35
    - 454 bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt

        apply {
          encodings[ 0x0] = encoding // Null character
          encodings[ 0x1] = encoding // Start of Header
          encodings[ 0x2] = encoding // Start of Text
          encodings[ 0x3] = encoding // End of Text
          encodings[ 0x4] = encoding // End of Transmission
          encodings[ 0x5] = encoding // Enquiry
          encodings[ 0x6] = encoding // Acknowledgment
          encodings[ 0x7] = encoding // Bell
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 12.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/BaseEncoding.java

      }
    
      // Modified encoding generators
    
      /**
       * Returns an encoding that behaves equivalently to this encoding, but omits any padding
       * characters as specified by <a href="http://tools.ietf.org/html/rfc4648#section-3.2">RFC 4648
       * section 3.2</a>, Padding of Encoded Data.
       */
      public abstract BaseEncoding omitPadding();
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 41.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        assertThat(encoding.canDecode(encoded)).isTrue();
        assertThat(encoding.decode(encoded)).isEqualTo(decoded);
      }
    
      private static void assertFailsToDecode(BaseEncoding encoding, String cannotDecode) {
        assertFailsToDecode(encoding, cannotDecode, null);
      }
    
      private static void assertFailsToDecode(
          BaseEncoding encoding, String cannotDecode, @Nullable String expectedMessage) {
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 24.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTesterJvm.kt

        codePointString: String,
        encoding: UrlComponentEncodingTester.Encoding,
        component: Component,
      ) {
        testToUrl(codePoint, encoding, component)
        testFromUrl(codePoint, encoding, component)
        testUri(codePoint, codePointString, encoding, component)
      }
    
      private fun testToUrl(
        codePoint: Int,
        encoding: UrlComponentEncodingTester.Encoding,
        component: Component,
      ) {
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 5.5K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/io/BaseEncodingBenchmark.java

        BASE32(BaseEncoding.base32()),
        BASE32_HEX(BaseEncoding.base32Hex()),
        BASE16(BaseEncoding.base16());
    
        final BaseEncoding encoding;
    
        EncodingOption(BaseEncoding encoding) {
          this.encoding = encoding;
        }
      }
    
      @Param EncodingOption encoding;
    
      @Param({"10", "100", "10000"})
      int n;
    
      private final byte[][] encodingInputs = new byte[INPUTS_COUNT][];
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 3.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

     * to provide DNS resolution with support for Internationalized Domain Names (IDN).
     * It converts Unicode domain names to ASCII Compatible Encoding (ACE) using the
     * {@link java.net.IDN} class.
     *
     * <p>This class allows setting a custom flag for the IDN conversion and a custom
     * encoding for URL decoding.</p>
     *
     * <p>Example usage:</p>
     * <pre>
     * {@code
     * IdnDnsResolver resolver = new IdnDnsResolver();
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 2.3K bytes
    - Viewed (0)
  8. api/go1.6.txt

    pkg encoding/asn1, const TagBitString ideal-int
    pkg encoding/asn1, const TagBoolean = 1
    pkg encoding/asn1, const TagBoolean ideal-int
    pkg encoding/asn1, const TagEnum = 10
    pkg encoding/asn1, const TagEnum ideal-int
    pkg encoding/asn1, const TagGeneralString = 27
    pkg encoding/asn1, const TagGeneralString ideal-int
    pkg encoding/asn1, const TagGeneralizedTime = 24
    pkg encoding/asn1, const TagGeneralizedTime ideal-int
    Registered: 2025-05-27 11:13
    - Last Modified: 2016-01-13 23:40
    - 12.9K bytes
    - Viewed (0)
  9. cmd/api-headers.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"encoding/xml"
    	"fmt"
    	"mime"
    	"net/http"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/minio/minio-go/v7/pkg/tags"
    	"github.com/minio/minio/internal/crypto"
    	xhttp "github.com/minio/minio/internal/http"
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-05-22 15:42
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/curl/CurlResponse.java

        }
    
        /**
         * Gets the encoding used for the response content.
         *
         * @return the encoding.
         */
        public String getEncoding() {
            return encoding;
        }
    
        /**
         * Sets the encoding for the response content.
         *
         * @param encoding the encoding to set.
         */
        public void setEncoding(final String encoding) {
            this.encoding = encoding;
        }
    Registered: 2025-05-24 08:59
    - Last Modified: 2025-05-10 01:44
    - 6.7K bytes
    - Viewed (0)
Back to top