Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for user (0.22 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. userCode */
        String USER_CODE_REQUEST_PARAMETER = "user.code.request.parameter";
    
        /** The key of the configuration. e.g. 20 */
        String USER_CODE_MIN_LENGTH = "user.code.min.length";
    
        /** The key of the configuration. e.g. 100 */
        String USER_CODE_MAX_LENGTH = "user.code.max.length";
    
        /** The key of the configuration. e.g. [a-zA-Z0-9_]+ */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      repeated string monitors = 1;
    
      // path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /
      // +optional
      optional string path = 2;
    
      // user is Optional: User is the rados user name, default is admin
      // More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
      // +optional
      optional string user = 3;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.22.md

    - Adds feature gate `KubeletInUserNamespace` which enables support for running kubelet in a user namespace.
      
      The user namespace has to be created before running kubelet.
      All the node components such as CRI need to be running in the same user namespace.
      
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.20.md

    - kubeadm: make the command "kubeadm alpha kubeconfig user" accept a "--config" flag and remove the following flags:
      - apiserver-advertise-address / apiserver-bind-port: use either localAPIEndpoint from InitConfiguration or controlPlaneEndpoint from ClusterConfiguration.
      - cluster-name: use clusterName from ClusterConfiguration
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Jan 19 21:05:45 GMT 2022
    - 409K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - Kubeadm: graduate the command `kubeadm alpha kubeconfig user` to `kubeadm kubeconfig user`. The `kubeadm alpha kubeconfig user` command is deprecated now. ([#97583](https://github.com/kubernetes/kubernetes/pull/97583), [@knight42](https://github.com/knight42)) [SIG Cluster Lifecycle]
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  6. CHANGELOG/CHANGELOG-1.6.md

    * The `--authorization-rbac-super-user` flag (alpha in 1.5) is deprecated; the `system:masters` group has privileged access ([#38121](https://github.com/kubernetes/kubernetes/pull/38121), [@deads2k](https://github.com/deads2k))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 304K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ```Python
    def get_current_user(token: str):
        # authenticate user
        return User()
    
    
    @app.get("/items/")
    def read_items(user: User = Depends(get_current_user)):
        ...
    
    
    @app.post("/items/")
    def create_item(*, user: User = Depends(get_current_user), item: Item):
        ...
    
    
    @app.get("/items/{item_id}")
    def read_item(*, user: User = Depends(get_current_user), item_id: int):
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.29.md

      - `alpha` support (guarded by the `ServiceAccountTokenPodNodeInfo` feature gate) for including the node name (and uid, if the node exists) as additional claims in service account tokens it issues which are bound to pods, and `authentication.kubernetes.io/node-name` and `authentication.kubernetes.io/node-uid` extra user info when the token is used to authenticate.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.9.md

        *  - User should be able to create k8s cluster which spans across multiple ESXi clusters, datacenters or even vCenters.
        *  - vSphere cloud provider (VCP) uses OS hostname and not vSphere Inventory VM Name.
        *    That means, now  VCP can handle cases where user changes VM inventory name.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

    * `kubectl create rolebinding` and `kubectl create clusterrolebinding` invocations must be updated to  specify multiple subjects as repeated  `--user`, `--group`, or `--serviceaccount` arguments instead of comma-separated arguments to a single `--user`, `--group`, or `--serviceaccount`.  E.g. `--user=x,y` must become `--user x --user y`  ([#43903](https://github.com/kubernetes/kubernetes/pull/43903), [@xilabao](https://github.com/xilabao))
    
    
    ### kubeadm
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Viewed (1)
Back to top