Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 372 for addAction (0.22 sec)

  1. helm/minio/values.yaml

    ## 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 write permissions on buckets starting with
    ## example.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_coverpkg_partial.txt

    # that coverage collection works in situations where we're testing a
    # collection of packages and supplying a -coverpkg pattern that
    # matches some but not all of the collection. In addition, some of the
    # packages have Go code but no tests, and other packages have tests
    # but no Go code. Package breakdown:
    #
    # Package         Code?           Tests?          Stmts           Imports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:12:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    const Doc = `check for unkeyed composite literals
    
    This analyzer reports a diagnostic for composite literals of struct
    types imported from another package that do not use the field-keyed
    syntax. Such literals are fragile because the addition of a new field
    (even if unexported) to the struct will cause compilation to fail.
    
    As an example,
    
    	err = &net.DNSConfigError{err}
    
    should be replaced by:
    
    	err = &net.DNSConfigError{Err: err}
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/os/pidfd_linux.go

    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != 0 {
    		return nil, NewSyscallError("waitid", e)
    	}
    	// Release the Process' handle reference, in addition to the reference
    	// we took above.
    	p.handlePersistentRelease(statusDone)
    	return &ProcessState{
    		pid:    int(info.Pid),
    		status: info.WaitStatus(),
    		rusage: &rusage,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    option go_package = "k8s.io/apimachinery/pkg/api/resource";
    
    // Quantity is a fixed-point representation of a number.
    // It provides convenient marshaling/unmarshaling in JSON and YAML,
    // in addition to String() and AsInt64() accessors.
    //
    // The serialization format is:
    //
    // ```
    // <quantity>        ::= <signedNumber><suffix>
    //
    // 	(Note that <suffix> may be empty, from the "" case in <decimalSI>.)
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    								InstanceName:    "instance",
    								CertificateName: "certificate",
    							},
    						},
    					}),
    				},
    			},
    		},
    		{
    			Name: "outbound|7777||custom-tls-addition",
    		},
    		{
    			Name:            "outbound|7777||custom-tls-replacement",
    			DnsLookupFamily: cluster.Cluster_V4_ONLY,
    			LbPolicy:        cluster.Cluster_ROUND_ROBIN,
    			TransportSocket: &core.TransportSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/runtime/runtime.go

    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    // Called by runtime/pprof in addition to runtime code.
    //
    // TODO(mknyszek): This doesn't account for things like CPU frequency scaling. Consider
    // a more sophisticated and general approach in the future.
    func ticksPerSecond() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java

    import org.apache.maven.model.Model;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    public class DefaultModelProblem implements ModelProblem {
    
        private final String source;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. internal/http/dial_linux.go

    				// ~ cat /proc/sys/net/ipv4/tcp_keepalive_intvl (defaults to 75 secs, we reduce it to 15 secs)
    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, 15)
    			}
    
    			// Set tcp user timeout in addition to the keep-alive - tcp-keepalive is not enough to close a socket
    			// with dead end because tcp-keepalive is not fired when there is data in the socket buffer.
    			//    https://blog.cloudflare.com/when-tcp-sockets-refuse-to-die/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblem.java

    import org.apache.maven.api.services.ModelProblem;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    public class DefaultModelProblem implements ModelProblem {
    
        private final String source;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top