Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2811 - 2820 of 6,031 for AsString (0.1 sec)

  1. regression-test/src/main/res/values/strings.xml

    <resources>
      <string name="app_name">regression-test</string>
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Nov 13 07:09:56 UTC 2020
    - 76 bytes
    - Viewed (0)
  2. android-test-app/src/main/res/values/strings.xml

    <resources>
      <string name="app_name">android-test</string>
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 73 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/net/URLUtil.java

         * @param enc
         *            エンコーディング。{@literal null}や空文字列であってはいけません
         * @return <code>application/x-www-form-urlencoded</code>でエンコード文字列
         */
        public static String encode(final String s, final String enc) {
            assertArgumentNotEmpty("s", s);
            assertArgumentNotEmpty("enc", enc);
    
            try {
                return URLEncoder.encode(s, enc);
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. cmd/s3-zip-handlers.go

    // splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip:
    //
    //	e.g  /path/to/archive.zip/backup-2021/myimage.png => /path/to/archive.zip, backup/myimage.png
    func splitZipExtensionPath(input string) (zipPath, object string, err error) {
    	idx := strings.Index(input, archivePattern)
    	if idx < 0 {
    		// Should never happen
    		return "", "", errors.New("unable to parse zip path")
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. cmd/admin-heal-ops.go

    	}
    
    	h.currentStatus.Items = nil
    
    	return jbytes, ErrNone
    }
    
    // healSource denotes single entity and heal option.
    type healSource struct {
    	bucket    string
    	object    string
    	versionID string
    	noWait    bool             // a non blocking call, if task queue is full return right away.
    	opts      *madmin.HealOpts // optional heal option overrides default setting
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

    /** Returns true if this string is not a host name and might be an IP address. */
    fun String.canParseAsIpAddress(): Boolean = VERIFY_AS_IP_ADDRESS.matches(this)
    
    /**
     * Returns true if the length is not valid for DNS (empty or greater than 253 characters), or if any
     * label is longer than 63 characters. Trailing dots are okay.
     */
    internal fun String.containsInvalidLabelLengths(): Boolean {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                return (T) BooleanConversionUtil.toBoolean(arg);
            } else if (arg != null && arg.getClass() != String.class && String.class == propertyType) {
                return (T) arg.toString();
            } else if (arg instanceof String && !String.class.equals(propertyType)) {
                return (T) convertWithString(arg);
            } else if (java.util.Calendar.class.isAssignableFrom(propertyType)) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/xml/DomUtil.java

         * @param encoding
         *            エンコーディング。{@literal null}の場合はプラットフォームのデフォルトエンコーディングが使われます
         * @return {@link InputStream}
         */
        public static InputStream getContentsAsStream(final String contents, final String encoding) {
            assertArgumentNotNull("contents", contents);
    
            if (encoding == null) {
                return new ByteArrayInputStream(contents.getBytes());
            }
            try {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                        if (logger.isDebugEnabled()) {
                            String problem = (problems.size() == 1) ? "problem" : "problems";
                            String problemPredicate = problem + ((problems.size() == 1) ? " was" : " were");
                            String message = String.format(
                                    "%s %s encountered while building the effective model for %s during %s\n",
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. cmd/metacache_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 13
    	// string "end"
    	o = append(o, 0x8d, 0xa3, 0x65, 0x6e, 0x64)
    	o = msgp.AppendTime(o, z.ended)
    	// string "st"
    	o = append(o, 0xa2, 0x73, 0x74)
    	o = msgp.AppendTime(o, z.started)
    	// string "lh"
    	o = append(o, 0xa2, 0x6c, 0x68)
    	o = msgp.AppendTime(o, z.lastHandout)
    	// string "u"
    	o = append(o, 0xa1, 0x75)
    	o = msgp.AppendTime(o, z.lastUpdate)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
Back to top