Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for alphabeta (2.9 sec)

  1. src/encoding/base32/base32.go

    	invalidIndex = '\xff'
    )
    
    // NewEncoding returns a new padded Encoding defined by the given alphabet,
    // which must be a 32-byte string that contains unique byte values and
    // does not contain the padding character or CR / LF ('\r', '\n').
    // The alphabet is treated as a sequence of byte values
    // without any special treatment for multi-byte UTF-8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

                .collect(Collectors.toList());
            return new UpgradedProperty(containingType, propertyName, methodName, methodDescriptor, upgradedAccessors);
        }
    
        @JsonPropertyOrder(alphabetic = true)
        static class UpgradedProperty {
            private final String propertyName;
            private final String methodName;
            private final String methodDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. docs/site-replication/run-replication-with-checksum-header.sh

    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    # Function to convert number to corresponding alphabet
    num_to_alpha() {
    	local num=$1
    	# ASCII value of 'a' is 97, so we add (num - 1) to 97 to get the corresponding alphabet
    	local ascii_value=$((96 + num))
    	# Convert the ASCII value to the character using printf
    	printf "\\$(printf '%03o' "$ascii_value")"
    }
    
    cleanup
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. security/pkg/util/jwtutil_test.go

    	// A JWT encoded payload that has the padding stripped and contains an underscore character from the base64url alphabet
    	base64UrlEncodedPaddingStrippedPart = "eyJpc3MiOiJodHRwczovL2V4YW1wbGUuY29tIiwiYXVkIjoiSm9lIEFyZG_DsWV6In0"
    )
    
    func TestGetExp(t *testing.T) {
    	testCases := map[string]struct {
    		jwt         string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    		{certs[0].Subject,
    			"CN=mail.google.com,O=Google LLC,L=Mountain View,ST=California,C=US"},
    		{pkix.Name{
    			Organization: []string{"#Google, Inc. \n-> 'Alphabet\" "},
    			Country:      []string{"US"},
    		}, "O=\\#Google\\, Inc. \n-\\> 'Alphabet\\\"\\ ,C=US"},
    		{pkix.Name{
    			CommonName:   "foo.com",
    			Organization: []string{"Gopher Industries"},
    			ExtraNames: []pkix.AttributeTypeAndValue{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    type EnvVar struct {
    	// Required: Name of the environment variable.
    	// When the RelaxedEnvironmentVariableValidation feature gate is disabled, this must consist of alphabetic characters,
    	// digits, '_', '-', or '.', and must not start with a digit.
    	// When the RelaxedEnvironmentVariableValidation feature gate is enabled,
    	// this may contain any printable ASCII characters except '='.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top