Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for readWrite (0.23 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. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    )
    
    // Write and other vars are slices of the allowed verbs.
    // Label and Annotation are default maps of bootstrappolicy.
    var (
    	Write      = []string{"create", "update", "patch", "delete", "deletecollection"}
    	ReadWrite  = []string{"get", "list", "watch", "create", "update", "patch", "delete", "deletecollection"}
    	Read       = []string{"get", "list", "watch"}
    	ReadUpdate = []string{"get", "list", "watch", "update", "patch"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

        }
    
        @Managed
        interface ManagedReadOnlyWithInvalidProperty {
            FileInputStream getStream()
        }
    
        def "should fail with a contextual exception for a managed type with an invalid readwrite property"() {
            when:
            realizeNodeOfType(ManagedReadWriteWithInvalidProperty)
    
            then:
            def ex = thrown(ModelRuleExecutionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. cluster/gce/windows/common.psm1

    # On success, returns an open file handle.
    # On failure, throws an exception.
    function Open-File {
      param (
        [parameter(Mandatory=$true)] [string]$Path
      )
    
      $lpFileName = $Path
      $dwDesiredAccess = [System.IO.FileAccess]::ReadWrite
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  9. 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)
  10. helm/minio/values.yaml

    ##
    resources:
      requests:
        memory: 16Gi
    
    ## List of policies to be created after minio install
    ##
    ## In addition to default policies [readonly|readwrite|writeonly|consoleAdmin|diagnostics]
    ## you can define additional policies with custom supported actions and resources
    policies: []
    ## writeexamplepolicy policy grants creation or deletion of buckets with name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top