Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 3,660 for pats (0.14 sec)

  1. docs/bucket/notifications/README.md

    ## Publish MinIO events via NATS
    
    Install NATS from [here](http://nats.io/).
    
    ### Step 1: Add NATS endpoint to MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/maturity/maturity.go

    	// We document this Kubernetes annotation, we should analyze it as well
    	if ann == "kubernetes.io/ingress.class" {
    		return true
    	}
    
    	parts := strings.Split(ann, "/")
    	if len(parts) == 0 {
    		return false
    	}
    
    	if !strings.HasSuffix(parts[0], "istio.io") {
    		return false
    	}
    
    	return true
    }
    
    func lookupAnnotation(ann string) *annotation.Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. cmd/http-tracer.go

    )
    
    var ldapPwdRegex = regexp.MustCompile("(^.*?)LDAPPassword=([^&]*?)(&(.*?))?$")
    
    // redact LDAP password if part of string
    func redactLDAPPwd(s string) string {
    	parts := ldapPwdRegex.FindStringSubmatch(s)
    	if len(parts) > 3 {
    		return parts[1] + "LDAPPassword=*REDACTED*" + parts[3]
    	}
    	return s
    }
    
    // getOpName sanitizes the operation name for mc
    func getOpName(name string) (op string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

       */
      private InternetDomainName(String name, ImmutableList<String> parts) {
        checkArgument(!parts.isEmpty(), "Cannot create an InternetDomainName with zero parts.");
        this.name = name;
        this.parts = parts;
      }
    
      /**
       * The index in the {@link #parts()} list at which the public suffix begins. For example, for the
       * domain name {@code myblog.blogspot.co.uk}, the value would be 1 (the index of the {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		var completeBytes, actualContent []byte
    		// Complete multipart upload parts.
    		completeUploads := &CompleteMultipartUpload{
    			Parts: testCase.parts,
    		}
    		completeBytes, err = xml.Marshal(completeUploads)
    		if err != nil {
    			t.Fatalf("Error XML encoding of parts: <ERROR> %s.", err)
    		}
    		// Indicating that all parts are uploaded and initiating CompleteMultipartUpload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/conversion.go

    	parts := strings.Split(name, "-")
    	if len(parts) < 3 {
    		err = fmt.Errorf("could not decode string into ingress rule name: %s", name)
    		return
    	}
    
    	ingressName = strings.Join(parts[0:len(parts)-2], "-")
    	ruleNum, ruleErr := strconv.Atoi(parts[len(parts)-2])
    	pathNum, pathErr := strconv.Atoi(parts[len(parts)-1])
    
    	if pathErr != nil || ruleErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    To give an instance of this Rule; suppose a Colour is compounded of
    these homogeneal Colours, of violet one part, of indigo one part, of
    blue two parts, of green three parts, of yellow five parts, of orange
    six parts, and of red ten parts. Proportional to these parts describe
    the Circles _x_, _v_, _t_, _s_, _r_, _q_, _p_, respectively, that is, so
    that if the Circle _x_ be one, the Circle _v_ may be one, the Circle _t_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/request-files.md

        But remember that when you import `Query`, `Path`, `File` and others from `fastapi`, those are actually functions that return special classes.
    
    !!! tip
        To declare File bodies, you need to use `File`, because otherwise the parameters would be interpreted as query parameters or body (JSON) parameters.
    
    The files will be uploaded as "form data".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    		exist if its backing file path is empty. Support for the -overlay flag
    		has some limitations: importantly, cgo files included from outside the
    		include path must be in the same directory as the Go package they are
    		included from, and overlays will not appear when binaries and tests are
    		run through go run and go test respectively.
    	-pgo file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. pkg/util/taints/taints.go

    	var taint v1.Taint
    
    	var key string
    	var value string
    	var effect v1.TaintEffect
    
    	parts := strings.Split(st, ":")
    	switch len(parts) {
    	case 1:
    		key = parts[0]
    	case 2:
    		effect = v1.TaintEffect(parts[1])
    		if err := validateTaintEffect(effect); err != nil {
    			return taint, err
    		}
    
    		partsKV := strings.Split(parts[0], "=")
    		if len(partsKV) > 2 {
    			return taint, fmt.Errorf("invalid taint spec: %v", st)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top