Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,554 for pats (0.05 sec)

  1. pkg/bootstrap/platform/gcp.go

    	if len(gcpm) == 0 {
    		return map[string]string{}
    	}
    	md := map[string]string{}
    	parts := strings.Split(gcpm, "|")
    	if len(parts) == 4 {
    		md[GCPProject] = parts[0]
    		md[GCPProjectNumber] = parts[1]
    		md[GCPCluster] = parts[2]
    		md[GCPLocation] = parts[3]
    	}
    
    	if quota != "" {
    		md[GCPQuotaProject] = quota
    	}
    
    	if clusterURL, err := constructGKEClusterURL(md); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    		if line == "" || strings.HasPrefix(line, "#") {
    			continue
    		}
    
    		parts := strings.Fields(line)
    		switch parts[0] {
    		case "def", "ref":
    			// Parse line.
    			if len(parts) != 3 {
    				log.Fatalf(`%s:%d: invalid symabi: syntax is "%s sym abi"`, file, lineNum, parts[0])
    			}
    			sym, abistr := parts[1], parts[2]
    			abi, valid := obj.ParseABI(abistr)
    			if !valid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/go.go

    func openbsdTrimLibVersion(lib string) (string, bool) {
    	parts := strings.Split(lib, ".")
    	if len(parts) != 4 {
    		return "", false
    	}
    	if parts[1] != "so" {
    		return "", false
    	}
    	if _, err := strconv.Atoi(parts[2]); err != nil {
    		return "", false
    	}
    	if _, err := strconv.Atoi(parts[3]); err != nil {
    		return "", false
    	}
    	return fmt.Sprintf("%s.%s", parts[0], parts[1]), true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519_test.go

    	for scanner.Scan() {
    		lineNo++
    
    		line := scanner.Text()
    		parts := strings.Split(line, ":")
    		if len(parts) != 5 {
    			t.Fatalf("bad number of parts on line %d", lineNo)
    		}
    
    		privBytes, _ := hex.DecodeString(parts[0])
    		pubKey, _ := hex.DecodeString(parts[1])
    		msg, _ := hex.DecodeString(parts[2])
    		sig, _ := hex.DecodeString(parts[3])
    		// The signatures in the test vectors also include the message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top