Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for writeOnly (0.36 sec)

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

            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. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

            @Serializable
            data object DefaultWriteOnly : PropertyMode.WriteOnly {
                private
                fun readResolve(): Any = DefaultWriteOnly
            }
        }
    }
    
    
    val DataProperty.isReadOnly: Boolean
        get() = mode is PropertyMode.ReadOnly
    
    
    val DataProperty.isWriteOnly: Boolean
        get() = mode is PropertyMode.WriteOnly
    
    
    @Serializable
    @SerialName("dataBuilderFunction")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. 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)
  4. fastapi/openapi/models.py

        title: Optional[str] = None
        description: Optional[str] = None
        default: Optional[Any] = None
        deprecated: Optional[bool] = None
        readOnly: Optional[bool] = None
        writeOnly: Optional[bool] = None
        examples: Optional[List[Any]] = None
        # Ref: OpenAPI 3.1.0: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#schema-object
        # Schema Object
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. helm-releases/minio-5.0.15.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, grants objects...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. helm-releases/minio-5.1.0.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, grants objects...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. helm-releases/minio-5.2.0.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, grants objects...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. cmd/admin-handlers-users_test.go

    	defer cancel()
    
    	policies, err := s.adm.ListCannedPolicies(ctx)
    	if err != nil {
    		c.Fatalf("unable to list policies: %v", err)
    	}
    
    	defaultPolicies := []string{
    		"readwrite",
    		"readonly",
    		"writeonly",
    		"diagnostics",
    		"consoleAdmin",
    	}
    
    	for _, v := range defaultPolicies {
    		if _, ok := policies[v]; !ok {
    			c.Fatalf("Failed to find %s in policies list", v)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

                encoder.writeSmallInt(implicits.size());
                for (ImplicitInputRecord<?, ?> implicit : implicits) {
                    writeAny(encoder, implicit.getInput());
                    writeAny(encoder, implicit.getOutput());
                }
            }
    
            private void writeAny(Encoder encoder, Object any) throws Exception {
                anySerializer.write(encoder, any);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top