Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 308 for LowerCase (0.38 sec)

  1. staging/src/k8s.io/api/authentication/v1alpha1/generated.proto

    // When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or
    // request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
    message SelfSubjectReview {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. hack/gen-swagger-doc/gen-swagger-docs.sh

      then
        buf+="* <<${VERSION}.${m}>>\n"
      fi
    done
    sed -i "1i ${buf}" ./definitions.adoc
    
    # fix the links in .adoc, replace <<x.y>> with link:definitions.html#_x_y[x.y], and lowercase the _x_y part
    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:#_\L\1_\2\E[\1.\2]|g' ./definitions.adoc
    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:../definitions#_\L\1_\2\E[\1.\2]|g' ./paths.adoc
    
    # fix the link to <<any>>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 19 12:58:58 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/common/case_format.cc

    };
    
    string FormatStringCase(const string &str, CaseFormatType to,
                            const char delimiter = '_') {
      const bool from_snake =
          (str == str_util::Uppercase(str)) || (str == str_util::Lowercase(str));
      const bool toUpper = (to == UPPER_CAMEL || to == UPPER_SNAKE);
      const bool toSnake = (to == LOWER_SNAKE || to == UPPER_SNAKE);
    
      string result;
    
      bool inputStart = true;
      bool wordStart = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1alpha1/types.go

    // When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or
    // request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
    type SelfSubjectReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/net/parse.go

    			return true
    		}
    	}
    	return false
    }
    
    // lowerASCIIBytes makes x ASCII lowercase in-place.
    func lowerASCIIBytes(x []byte) {
    	for i, b := range x {
    		if 'A' <= b && b <= 'Z' {
    			x[i] += 'a' - 'A'
    		}
    	}
    }
    
    // lowerASCII returns the ASCII lowercase version of b.
    func lowerASCII(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/caching/BuildCacheServiceFactory.java

             * {@link BuildCacheServiceFactory} implementations should always return the same value for the same cache “type”.
             * All implementations should call this method.
             * <p>
             * Values should be lowercase, except where using an acronym (e.g. HTTP).
             * <p>
             * Subsequent calls to this method replace the previously set value.
             */
            Describer type(String type);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"status":   "Status is filled in by the server with the user attributes.",
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/net/http/header.go

    }
    
    // CanonicalHeaderKey returns the canonical format of the
    // header key s. The canonicalization converts the first
    // letter and any letter following a hyphen to upper case;
    // the rest are converted to lowercase. For example, the
    // canonical key for "accept-encoding" is "Accept-Encoding".
    // If s contains a space or invalid header field bytes, it is
    // returned without modifications.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/user/user.go

    	// a SubjectAccessReviewSpec.authorization.k8s.io for proper authorization
    	// delegation flows
    	// In order to faithfully round-trip through an impersonation flow, these keys
    	// MUST be lowercase.
    	GetExtra() map[string][]string
    }
    
    // DefaultInfo provides a simple user information exchange object
    // for components that implement the UserInfo interface.
    type DefaultInfo struct {
    	Name   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 16:21:55 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top