Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for urlEncoding (0.15 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            String urlEncoding;
            final UrlQueue<?> urlQueue = CrawlingParameterUtil.getUrlQueue();
            if (urlQueue != null && urlQueue.getEncoding() != null) {
                urlEncoding = urlQueue.getEncoding();
            } else {
                urlEncoding = responseData.getCharSet();
            }
    
            // cid
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/encoding/base64/base64_test.go

    	conv func(string) string // Reference string converter
    }
    
    var encodingTests = []encodingTest{
    	{StdEncoding, stdRef},
    	{URLEncoding, urlRef},
    	{RawStdEncoding, rawRef},
    	{RawURLEncoding, rawURLRef},
    	{funnyEncoding, funnyRef},
    	{StdEncoding.Strict(), stdRef},
    	{URLEncoding.Strict(), urlRef},
    	{RawStdEncoding.Strict(), rawRef},
    	{RawURLEncoding.Strict(), rawURLRef},
    	{funnyEncoding.Strict(), funnyRef},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            String urlEncoding;
            final UrlQueue<?> urlQueue = CrawlingParameterUtil.getUrlQueue();
            if (urlQueue != null && urlQueue.getEncoding() != null) {
                urlEncoding = urlQueue.getEncoding();
            } else {
                urlEncoding = responseData.getCharSet();
            }
    
            // cid
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  4. security/pkg/util/jwtutil.go

    	}
    	return claims, nil
    }
    
    func DecodeJwtPart(seg string) ([]byte, error) {
    	if l := len(seg) % 4; l > 0 {
    		seg += strings.Repeat("=", 4-l)
    	}
    
    	return base64.URLEncoding.DecodeString(seg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/encoding/base64/base64.go

    var StdEncoding = NewEncoding("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/")
    
    // URLEncoding is the alternate base64 encoding defined in RFC 4648.
    // It is typically used in URLs and file names.
    var URLEncoding = NewEncoding("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_")
    
    // RawStdEncoding is the standard raw, unpadded base64 encoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/FormBodyTest.kt

    import assertk.assertions.isEqualTo
    import java.io.IOException
    import java.nio.charset.StandardCharsets
    import okio.Buffer
    import org.junit.jupiter.api.Test
    
    class FormBodyTest {
      @Test
      fun urlEncoding() {
        val body =
          FormBody.Builder()
            .add("a+=& b", "c+=& d")
            .add("space, the", "final frontier")
            .add("%25", "%25")
            .build()
        assertThat(body.size).isEqualTo(3)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. internal/event/target/elasticsearch.go

    			if target.client.isAtleastV7() {
    				hh, _ := highwayhash.New(magicHighwayHash256Key) // New will never return error since key is 256 bit
    				hh.Write([]byte(key))
    				hashBytes := hh.Sum(nil)
    				keyHash = base64.URLEncoding.EncodeToString(hashBytes)
    			} else {
    				keyHash = key
    			}
    		}
    
    		if eventData.EventName == event.ObjectRemovedDelete {
    			err = target.client.removeEntry(ctx, target.args.Index, keyHash)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. cmd/tier.go

    			cfg.Azure.SPAuth.ClientSecret = creds.AzSP.ClientSecret
    		}
    	case madmin.GCS:
    		if creds.CredsJSON == nil {
    			return errTierMissingCredentials
    		}
    		cfg.GCS.Creds = base64.URLEncoding.EncodeToString(creds.CredsJSON)
    	case madmin.MinIO:
    		if creds.AccessKey == "" || creds.SecretKey == "" {
    			return errTierMissingCredentials
    		}
    		cfg.MinIO.AccessKey = creds.AccessKey
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	hash := sha512.New512_256()
    
    	// Here we make sure two different inputs can't write the same stream
    	// to the hash. This delimiter is not in the base64.URLEncoding
    	// alphabet so there is no way to have spill over collisions. Without
    	// it 'CN:foo,ORG:bar' hashes to the same value as 'CN:foob,ORG:ar'
    	const delimiter = '|'
    	encode := base64.RawURLEncoding.EncodeToString
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  10. src/main/assemblies/files/tomcat_config.properties

    # ----------------------------------------------------------
    #                                                     Tomcat
    #                                                     ------
    tomcat.URIEncoding = UTF-8
    tomcat.useBodyEncodingForURI = true
    #tomcat.secure=false
    #tomcat.scheme=http
    #tomcat.bindAddress=127.0.0.1
    #tomcat.proxyPort=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Aug 11 21:43:37 UTC 2018
    - 639 bytes
    - Viewed (0)
Back to top