Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,167 for user4 (0.07 sec)

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

    }
    
    // UserInfo holds the information about the user needed to implement the
    // user.Info interface.
    message UserInfo {
      // The name that uniquely identifies this user among all active users.
      // +optional
      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. samples/bookinfo/README.md

    ```
    
    For example:
    
    ```bash
    $ BOOKINFO_TAG=test1.0 BOOKINFO_HUB=docker.io/user1  src/build-services.sh
    +++ dirname ./build-services.sh
    ++ cd .
    ++ pwd
    + SCRIPTDIR=/work/samples/bookinfo/src
    + cd /work/samples/bookinfo/src/../../..
    + h=docker.io/user1
    + t=test1.0
    + [[ docker.io/user1 == \i\s\t\i\o ]]
    + [[ docker.io/user1 == \d\o\c\k\e\r\.\i\o\/\i\s\t\i\o ]]
    + plat=linux/amd64
    + [[ '' == \t\r\u\e ]]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/types.go

    }
    
    // UserInfo holds the information about the user needed to implement the
    // user.Info interface.
    type UserInfo struct {
    	// The name that uniquely identifies this user among all active users.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"`
    	// A unique value that identifies this user across time. If this user is
    	// deleted and another user by the same name is added, they will have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. tests/helper_test.go

    	}
    }
    
    func CheckUserUnscoped(t *testing.T, user User, expect User) {
    	doCheckUser(t, user, expect, true)
    }
    
    func CheckUser(t *testing.T, user User, expect User) {
    	doCheckUser(t, user, expect, false)
    }
    
    func doCheckUser(t *testing.T, user User, expect User, unscoped bool) {
    	if user.ID != 0 {
    		var newUser User
    		if err := db(unscoped).Where("id = ?", user.ID).First(&newUser).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/oauth2-jwt.md

    That way, you can create a token with an expiration of, let's say, 1 week. And then when the user comes back the next day with the token, you know that user is still logged in to your system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. cluster/common.sh

    function get-kubeconfig-user-basicauth() {
      KUBE_USER=$("${KUBE_ROOT}/cluster/kubectl.sh" config view -o jsonpath="{.users[?(@.name == \"$1\")].user.username}")
      KUBE_PASSWORD=$("${KUBE_ROOT}/cluster/kubectl.sh" config view -o jsonpath="{.users[?(@.name == \"$1\")].user.password}")
    }
    
    # Generate basic auth user and password.
    
    # Vars set:
    #   KUBE_USER
    #   KUBE_PASSWORD
    function gen-kube-basicauth() {
        KUBE_USER='admin'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. docs/bucket/lifecycle/README.md

    e.g., To scan objects stored under `user-uploads/` prefix and remove versions older than one year.
    
    ```
    {
        "Rules": [
            {
                "ID": "Removing all old versions",
                "Filter": {
                    "Prefix": "users-uploads/"
                },
                "NoncurrentVersionExpiration": {
                    "NoncurrentDays": 365
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pkg/registry/core/service/strategy.go

    // and should not be modified by the user.
    func (svcStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    // PrepareForCreate sets contextual defaults and clears fields that are not allowed to be set by end users on creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1alpha1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1alpha1";
    
    // SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request.
    // 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

            expect:
            VfsRelativePath.of(absolutePath).asString == relativePath
    
            where:
            absolutePath           | relativePath
            'C:\\'                 | 'C:'
            'C:\\Users\\user'      | 'C:\\Users\\user'
            '/'                    | ''
            '/var/log/messages'    | 'var/log/messages'
            '//uncMount/some/path' | 'uncMount/some/path'
            '/a'                   | 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top