- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,772 for user3 (0.02 sec)
-
docs/sts/casdoor.md
- }
- ```
- ### Using MinIO Console
- - Open MinIO URL on the browser, lets say <http://localhost:9000/>
- - Click on `Login with SSO`
- - User will be redirected to the Casdoor user login page, upon successful login the user will be redirected to MinIO page and logged in automatically,
- the user should see now the buckets and objects they have access to.
- ## Explore Further
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 6.6K bytes - Viewed (0) -
helm-releases/minio-3.4.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 Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 21 20:55:50 UTC 2021 - 17.7K bytes - Viewed (0) -
helm-releases/minio-1.0.2.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 Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 24 18:58:05 UTC 2021 - 13.6K bytes - Viewed (0) -
common-protos/k8s.io/api/authentication/v1/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: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 6.7K bytes - Viewed (0) -
docs/de/docs/tutorial/security/simple-oauth2.md
- Benutzer: `alice`.
- Passwort: `secret2`.
- Und versuchen Sie, die Operation `GET` mit dem Pfad `/users/me` zu verwenden.
- Sie erhalten die Fehlermeldung „Inactive user“:
- ```JSON
- {
- "detail": "Inactive user"
- }
- ```
- ## Zusammenfassung
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.1K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
- │ │ └── users.py # "users" submodule, e.g. import app.routers.users
- │ └── internal # "internal" is a "Python subpackage"
- │ ├── __init__.py # makes "internal" a "Python subpackage"
- │ └── admin.py # "admin" submodule, e.g. import app.internal.admin
- ```
- ## `APIRouter`
- Let's say the file dedicated to handling just users is the submodule at `/app/routers/users.py`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0) -
common-protos/k8s.io/api/certificates/v1alpha1/generated.proto
- // (root certificates).
- //
- // ClusterTrustBundle objects are considered to be readable by any authenticated
- // user in the cluster, because they can be mounted by pods using the
- // `clusterTrustBundle` projection. All service accounts have read access to
- // ClusterTrustBundles by default. Users who only have namespace-level access
- // to a cluster can read ClusterTrustBundles by impersonating a serviceaccount
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 4.2K bytes - Viewed (0) -
common-protos/k8s.io/api/certificates/v1beta1/generated.proto
- // "ipsec tunnel",
- // "ipsec user",
- // "timestamping",
- // "ocsp signing",
- // "microsoft sgc",
- // "netscape sgc"
- // +listType=atomic
- repeated string usages = 5;
- // Information about the requesting user.
- // See user.Info interface for details.
- // +optional
- optional string username = 2;
- // UID information about the requesting user.
- // See user.Info interface for details.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 6.7K bytes - Viewed (0) -
docs/iam/access-manager-plugin.go
- }
- m := reqMap["input"].(map[string]interface{})
- accountValue := m["account"].(string)
- actionValue := m["action"].(string)
- // Allow user `minio` to perform any action.
- var res Result
- if accountValue == "minio" {
- res.Result = true
- } else {
- // All other users may not perform any `s3:Put*` operations.
- res.Result = true
- if strings.HasPrefix(actionValue, "s3:Put") {
- res.Result = false
- }
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 08 17:15:20 UTC 2024 - 2.7K bytes - Viewed (0) -
helm-releases/minio-3.1.2.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 Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 18 04:26:47 UTC 2021 - 14.4K bytes - Viewed (0)