Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for readWrite (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    public void doStuff() { }
                }
            """
    
            expect:
            assertValidationFailsWith([
                error(missingAnnotationConfig { type('MyTask').property('readWrite').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        override val isDirectAccessOnly: Boolean = false
    ) : DataProperty {
        data object DefaultPropertyMode {
            @Serializable
            data object DefaultReadWrite : PropertyMode.ReadWrite {
                private
                fun readResolve(): Any = DefaultReadWrite
            }
    
    
            @Serializable
            data object DefaultReadOnly : PropertyMode.ReadOnly {
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users_test.go

       ]
      }
     ]
    }`, bucket))
    
    	// Check that default policies can be overwritten.
    	err = s.adm.AddCannedPolicy(ctx, "readwrite", policyBytes)
    	if err != nil {
    		c.Fatalf("policy add error: %v", err)
    	}
    
    	info, err := s.adm.InfoCannedPolicy(ctx, "readwrite")
    	if err != nil {
    		c.Fatalf("policy info err: %v", err)
    	}
    
    	infoStr := string(info)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      ASSERT_EQ(incompatible_pairs.size(), 1);
      std::pair<int, int> write_read_pair = {write->id(), read->id()};
      EXPECT_EQ(incompatible_pairs[0], write_read_pair);
    }
    
    TEST(ResourceOperationSafetyAnalysisTest, ReadWrite) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* read = MakeRead(root, "R");
      Node* write = MakeWrite(root, "W");
    
      root.graph()->AddControlEdge(read, write);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  9. docs/sts/web-identity.md

    MINIO_IDENTITY_OPENID_CLIENT_SECRET_APP2="minio-client-app-secret-2"
    MINIO_IDENTITY_OPENID_SCOPES_APP2="openid,groups"
    MINIO_IDENTITY_OPENID_REDIRECT_URI_APP2="http://127.0.0.1:10000/oauth_callback"
    MINIO_IDENTITY_OPENID_ROLE_POLICY_APP2="readwrite"
    
    ```
    </details>
    
    <details><summary>Example 2: Single claim based provider</summary>
    
    Sample environment variables:
    
    ```
    MINIO_IDENTITY_OPENID_DISPLAY_NAME="my openid"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. helm-releases/minio-3.6.2.tgz

    ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## 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 ## starting with example. In addition,...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 17 18:30:55 UTC 2022
    - 17.9K bytes
    - Viewed (0)
Back to top