Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,619 for user4 (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/smtp/smtp_test.go

    252 Send some mail, I'll try my best
    250 User is valid
    235 Accepted
    250 Sender OK
    250 Receiver OK
    354 Go ahead
    250 Data OK
    221 OK
    `
    
    var basicClient = `HELO localhost
    EHLO localhost
    EHLO localhost
    MAIL FROM:<user@gmail.com> BODY=8BITMIME
    VRFY user1@gmail.com
    VRFY user2@gmail.com
    AUTH PLAIN AHVzZXIAcGFzcw==
    MAIL FROM:<user@gmail.com> BODY=8BITMIME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. cluster/gce/windows/testonly/install-ssh.psm1

        # for each user, but if we create the directory before that user profile
        # has been created first by Windows, then Windows will create a different
        # user profile directory that looks like "<user>.KUBERNETES-MINI" and sshd
        # will look for the authorized_keys file in THAT directory. In other words,
        # we need to create the user first before we can put the authorized_keys
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  6. pkg/registry/certificates/certificates/strategy.go

    		csr.Spec.UID = user.GetUID()
    		csr.Spec.Groups = user.GetGroups()
    		if extra := user.GetExtra(); len(extra) > 0 {
    			csr.Spec.Extra = map[string]certificates.ExtraValue{}
    			for k, v := range extra {
    				csr.Spec.Extra[k] = v
    			}
    		}
    	}
    
    	// Be explicit that users cannot create pre-approved certificate requests.
    	csr.Status = certificates.CertificateSigningRequestStatus{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

            // If the user is the QuantizeOp, it must be the only user.
            if (result.hasOneUse() && isa<QuantizeOpT>(*result.user_begin())) {
              auto user = cast<QuantizeOpT>(*result.user_begin());
              outputs_replaced.insert(
                  {user.getResult(), enumerated_result.index()});
              output_types.push_back(user.getType());
            } else if (!result_ele_type.isF32()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. helm-releases/minio-3.5.9.tgz

    active return 0 } # checkUserExists ($username) # Check if the user exists, by using the exit code of `mc admin user info` checkUserExists() { USER=$1 CMD=$(${MC} admin user info myminio $USER > /dev/null 2>&1) return $? } # createUser ($username, $password, $policy) createUser() { USER=$1 PASS=$2 POLICY=$3 # Create the user if it does not exist if ! checkUserExists $USER ; then echo "Creating user '$USER'" ${MC} admin user add myminio $USER $PASS else echo "User '$USER' already exists." fi # set policy...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 03 23:29:03 UTC 2022
    - 17.7K bytes
    - Viewed (0)
  9. helm-releases/minio-3.6.3.tgz

    active return 0 } # checkUserExists ($username) # Check if the user exists, by using the exit code of `mc admin user info` checkUserExists() { USER=$1 CMD=$(${MC} admin user info myminio $USER > /dev/null 2>&1) return $? } # createUser ($username, $password, $policy) createUser() { USER=$1 PASS=$2 POLICY=$3 # Create the user if it does not exist if ! checkUserExists $USER ; then echo "Creating user '$USER'" ${MC} admin user add myminio $USER $PASS else echo "User '$USER' already exists." fi # set policy...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 24 04:07:15 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  10. helm-releases/minio-3.5.6.tgz

    active return 0 } # checkUserExists ($username) # Check if the user exists, by using the exit code of `mc admin user info` checkUserExists() { USER=$1 CMD=$(${MC} admin user info myminio $USER > /dev/null 2>&1) return $? } # createUser ($username, $password, $policy) createUser() { USER=$1 PASS=$2 POLICY=$3 # Create the user if it does not exist if ! checkUserExists $USER ; then echo "Creating user '$USER'" ${MC} admin user add myminio $USER $PASS else echo "User '$USER' already exists." fi # set policy...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 19 20:34:14 UTC 2022
    - 17.6K bytes
    - Viewed (0)
Back to top