Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for alphabeta (0.13 sec)

  1. pkg/apis/storagemigration/validation/validation.go

    	return allErrs
    }
    func isValidConditionReason(value string) []string {
    	const conditionReasonFmt string = "[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?"
    	const conditionReasonErrMsg string = "a condition reason must start with alphabetic character, optionally followed by a string of alphanumeric characters or '_,:', and must end with an alphanumeric character or '_'"
    	var conditionReasonRegexp = regexp.MustCompile("^" + conditionReasonFmt + "$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/apis/apiserverinternal/validation/validation.go

    	}
    	return allErrs
    }
    
    const dns1035LabelFmt string = "[a-z]([-a-z0-9]*[a-z0-9])?"
    const dns1035LabelErrMsg string = "a DNS-1035 label, which must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character"
    
    // isValidAPIVersion tests whether the value passed is a valid apiVersion. A
    // valid apiVersion contains a version string that matches DNS_LABEL format,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

              override fun encode(
                writer: DerWriter,
                value: String,
              ) = writer.writeUtf8(value)
            },
        )
    
      /**
       * Based on International Alphabet No. 5. Note that there are bytes that IA5 and US-ASCII
       * disagree on interpretation.
       *
       * TODO(jwilson): constrain to IA5 characters.
       */
      val IA5_STRING =
        BasicDerAdapter(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. SECURITY.md

      - A minimal example of the vulnerability. It is very important to let us know
        how we can reproduce your findings. For memory corruption triggerable in
        TensorFlow models, please demonstrate an exploit against one of Alphabet's
        models in <https://tfhub.dev/>
      - An explanation of who can exploit this vulnerability, and what they gain
        when doing so. Write an attack scenario that demonstrates how your issue
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    	}
    
    	return allErrs
    }
    
    const conditionReasonFmt string = "[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?"
    const conditionReasonErrMsg string = "a condition reason must start with alphabetic character, optionally followed by a string of alphanumeric characters or '_,:', and must end with an alphanumeric character or '_'"
    
    var conditionReasonRegexp = regexp.MustCompile("^" + conditionReasonFmt + "$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  6. 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)
  7. src/text/template/parse/lex.go

    }
    
    // isSpace reports whether r is a space character.
    func isSpace(r rune) bool {
    	return r == ' ' || r == '\t' || r == '\r' || r == '\n'
    }
    
    // isAlphaNumeric reports whether r is an alphabetic, digit, or underscore.
    func isAlphaNumeric(r rune) bool {
    	return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
    }
    
    func hasLeftTrimMarker(s string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      /**
       * Determines whether a character is a BMP letter according to {@linkplain
       * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin
       * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}.
       *
       * @deprecated Most letters are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code JAVA_LETTER})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

      }
    
      /**
       * Determines whether a character is a BMP letter according to {@linkplain
       * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin
       * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}.
       *
       * @deprecated Most letters are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code JAVA_LETTER})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/regexp/exec_test.go

    // considered during RE2's exhaustive tests, which run all possible
    // regexps over a given set of atoms and operators, up to a given
    // complexity, over all possible strings over a given alphabet,
    // up to a given size. Rather than try to link with RE2, we read a
    // log file containing the test cases and the expected matches.
    // The log file, re2-exhaustive.txt, is generated by running 'make log'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top