Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for LowerCase (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta.go

    func ValidateAnnotations(annotations map[string]string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for k := range annotations {
    		// The rule is QualifiedName except that case doesn't matter, so convert to lowercase before checking.
    		for _, msg := range validation.IsQualifiedName(strings.ToLower(k)) {
    			allErrs = append(allErrs, field.Invalid(fldPath, k, msg))
    		}
    	}
    	if err := ValidateAnnotationsSize(annotations); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 12K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// name or hostname & domain name
    	domainMatchers []matcher
    }
    
    // FromEnvironment returns a Config instance populated from the
    // environment variables HTTP_PROXY, HTTPS_PROXY and NO_PROXY (or the
    // lowercase versions thereof).
    //
    // The environment values may be either a complete URL or a
    // "host[:port]", in which case the "http" scheme is assumed. An error
    // is returned if the value is a different form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

        cat <<EOF
    Please rename files so there are no repeats. For example, README.md and
    Readme.md would be the same file on Windows. In this test, you would get a
    warning for "readme.md" because it makes everything lowercase. There are
    repeats of these filename(s) with different casing:
    EOF
        find . | tr '[A-Z]' '[a-z]' | sort | uniq -d | tee $BATS_FILE_TMPDIR/repeats
        [[ ! -s $BATS_FILE_TMPDIR/repeats ]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

     * href="https://tools.ietf.org/html/rfc2046">2046</a>.
     *
     * <p>All portions of the media type that are case-insensitive (type, subtype, parameter attributes)
     * are normalized to lowercase. The value of the {@code charset} parameter is normalized to
     * lowercase, but all others are left as-is.
     *
     * <p>Note that this specifically does <strong>not</strong> represent the value of the MIME {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

     * href="https://tools.ietf.org/html/rfc2046">2046</a>.
     *
     * <p>All portions of the media type that are case-insensitive (type, subtype, parameter attributes)
     * are normalized to lowercase. The value of the {@code charset} parameter is normalized to
     * lowercase, but all others are left as-is.
     *
     * <p>Note that this specifically does <strong>not</strong> represent the value of the MIME {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

        .readUtf8()
    }
    
    /**
     * If this is an IP address, this returns the IP address in canonical form.
     *
     * Otherwise, this performs IDN ToASCII encoding and canonicalize the result to lowercase. For
     * example this converts `☃.net` to `xn--n3h.net`, and `WwW.GoOgLe.cOm` to `www.google.com`.
     * `null` will be returned if the host cannot be ToASCII encoded or if the result contains
     * unsupported ASCII characters.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/net/cgo_unix.go

    	cservice, err := syscall.ByteSliceFromString(service)
    	if err != nil {
    		return 0, &DNSError{Err: err.Error(), Name: network + "/" + service}
    	}
    	// Lowercase the C service name.
    	for i, b := range cservice[:len(service)] {
    		cservice[i] = lowerASCII(b)
    	}
    	var res *_C_struct_addrinfo
    	gerrno, err := _C_getaddrinfo(nil, (*_C_char)(unsafe.Pointer(&cservice[0])), hints, &res)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Headers.kt

      fun toMultimap(): Map<String, List<String>> {
        val result = TreeMap<String, MutableList<String>>(String.CASE_INSENSITIVE_ORDER)
        for (i in 0 until size) {
          val name = name(i).lowercase(Locale.US)
          var values: MutableList<String>? = result[name]
          if (values == null) {
            values = ArrayList(2)
            result[name] = values
          }
          values.add(value(i))
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/syscall/syscall_darwin.go

    // Darwin system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_bsd.go or syscall_unix.go.
    
    package syscall
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
      // Must be all lowercase.
      optional string plural = 1;
    
      // singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.
      // +optional
      optional string singular = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top