Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for readWrite (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/DataProperty.kt

        val isHiddenInDsl: Boolean
        val isDirectAccessOnly: Boolean
    
        @ToolingModelContract(subTypes = [
            PropertyMode.ReadWrite::class,
            PropertyMode.ReadOnly::class,
            PropertyMode.WriteOnly::class
        ])
        sealed interface PropertyMode : Serializable {
            interface ReadWrite : PropertyMode
            interface ReadOnly : PropertyMode
            interface WriteOnly : PropertyMode
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    		group_search_filter="(&(objectclass=groupOfNames)(member=%d))"
    	mc admin service restart old-minio
    
    	mc idp ldap policy attach old-minio readwrite --user=UID=dillon,ou=people,ou=swengg,dc=min,dc=io
    	mc idp ldap policy attach old-minio readwrite --group=CN=project.c,ou=groups,ou=swengg,dc=min,dc=io
    
    	mc idp ldap policy entities old-minio
    
    	mc admin cluster iam export old-minio
    	set +x
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTestHelper.groovy

    public class ExtensibleDynamicObjectTestHelper {
        public static void assertCanGetAllProperties (ExtensibleDynamicObjectTest.Bean bean) {
            bean.readWriteProperty = 'readWrite'
            bean.defineProperty('additional', 'additional')
            assertEquals(bean.getProperties().readWriteProperty, 'readWrite')
            assertEquals(bean.getProperties().additional, 'additional')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pkg/kubelet/server/metrics/metrics.go

    			Help:           "Number of the http requests received since the server started",
    			StabilityLevel: metrics.ALPHA,
    		},
    		// server_type aims to differentiate the readonly server and the readwrite server.
    		// long_running marks whether the request is long-running or not.
    		// Currently, long-running requests include exec/attach/portforward/debug.
    		[]string{"method", "path", "server_type", "long_running"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. cmd/sftp-server_test.go

    	err := s.adm.SetUser(ctx, accessKey, secretKey, madmin.AccountEnabled)
    	if err != nil {
    		c.Fatalf("Unable to set user: %v", err)
    	}
    
    	err = s.adm.SetPolicy(ctx, "readwrite", accessKey, false)
    	if err != nil {
    		c.Fatalf("unable to set policy: %v", err)
    	}
    
    	newSSHCon := newSSHConnMock(accessKey + "=svc")
    	_, err = sshPasswordAuth(newSSHCon, []byte("invalid"))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. docs/sts/casdoor.md

      - Edit the application
        - Copy `Client ID` and `Client secret`
        - Add your redirect url (callback url) to `Redirect URLs`
        - Save
    
    - Go to Users
      - Edit the user
        - Add your MinIO policy (ex: `readwrite`) in `Tag`
        - Save
    
    - Open your favorite browser and visit: **http://`CASDOOR_ENDPOINT`/.well-known/openid-configuration**, you will see the OIDC configure of Casdoor.
    
    ### Configure MinIO
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. pkg/volume/flexvolume/driver-call.go

    	unmountCmd = "unmount"
    
    	expandVolumeCmd = "expandvolume"
    	expandFSCmd     = "expandfs"
    
    	// Option keys
    	optionFSType         = "kubernetes.io/fsType"
    	optionReadWrite      = "kubernetes.io/readwrite"
    	optionKeySecret      = "kubernetes.io/secret"
    	optionFSGroup        = "kubernetes.io/mounterArgs.FsGroup"
    	optionPVorVolumeName = "kubernetes.io/pvOrVolumeName"
    
    	optionKeyPodName      = "kubernetes.io/pod.name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. docs/ftp/README.md

      - SSE (Server Side Encryption)
      - Replication (Server Side Replication)
    
    ## Prerequisites
    
    - It is assumed you have users created and configured with relevant access policies, to start with
      use basic "readwrite" canned policy to test all the operations before you finalize on what level
      of restrictions are needed for a user.
    
    - No "admin:*" operations are needed for FTP/SFTP access to the bucket(s) and object(s), so you may
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. docs/multi-user/README.md

    Use [`mc admin policy`](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-policy.html) to create canned policies. Server provides a default set of canned policies namely `writeonly`, `readonly` and `readwrite` *(these policies apply to all resources on the server)*. These can be overridden by custom policies using `mc admin policy` command.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. docs/sts/keycloak.md

        - This value is needed for `MINIO_IDENTITY_OPENID_CLIENT_SECRET` for MinIO.
    
    - Go to Users
      - Click on the user
      - Attribute, add a new attribute `Key` is `policy`, `Value` is name of the `policy` on MinIO (ex: `readwrite`)
      - Add and Save
    
    - Go to Clients
      - Click on `account`
      - Settings, set `Valid Redirect URIs` to `*`, expand `Advanced Settings` and set `Access Token Lifespan` to `1 Hours`
      - Save
    
    - Go to Clients
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top