Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for writeOnly (0.14 sec)

  1. 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)
  2. helm-releases/minio-5.0.12.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 Jul 07 16:44:16 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. helm-releases/minio-5.0.13.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 Jul 09 07:13:05 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/doc/comment/text.go

    	var out bytes.Buffer
    	for i, x := range d.Content {
    		if i > 0 && blankBefore(x) {
    			out.WriteString(tp.prefix)
    			writeNL(&out)
    		}
    		tp.block(&out, x)
    	}
    	anyUsed := false
    	for _, def := range d.Links {
    		if def.Used {
    			anyUsed = true
    			break
    		}
    	}
    	if anyUsed {
    		writeNL(&out)
    		for _, def := range d.Links {
    			if def.Used {
    				fmt.Fprintf(&out, "[%s]: %s\n", def.Text, def.URL)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. 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)
  10. src/mime/multipart/formdata.go

    				copyBuf = make([]byte, 32*1024) // same buffer size as io.Copy uses
    			}
    			// os.File.ReadFrom will allocate its own copy buffer if we let io.Copy use it.
    			type writerOnly struct{ io.Writer }
    			remainingSize, err := io.CopyBuffer(writerOnly{file}, p, copyBuf)
    			if err != nil {
    				return nil, err
    			}
    			fh.tmpfile = file.Name()
    			fh.Size = int64(b.Len()) + remainingSize
    			fh.tmpoff = fileOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top