Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 907 for SplitV (0.13 sec)

  1. cmd/sftp-server.go

    			allowPubKeys = filterAlgos(arg, strings.Split(tokens[1], ","), supportedPubKeyAuthAlgos)
    		case "kex-algos":
    			allowKexAlgos = filterAlgos(arg, strings.Split(tokens[1], ","), supportedKexAlgos)
    		case "cipher-algos":
    			allowCiphers = filterAlgos(arg, strings.Split(tokens[1], ","), supportedCiphers)
    		case "mac-algos":
    			allowMACs = filterAlgos(arg, strings.Split(tokens[1], ","), supportedMACs)
    		case "trusted-user-ca-key":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    		Path:   path,
    	}
    }
    
    func GetHTTPClient(req *http.Request) string {
    	if ua := req.UserAgent(); len(ua) != 0 {
    		return ua
    	}
    	return "unknown"
    }
    
    // SourceIPs splits the comma separated X-Forwarded-For header and joins it with
    // the X-Real-Ip header and/or req.RemoteAddr, ignoring invalid IPs.
    // The X-Real-Ip is omitted if it's already present in the X-Forwarded-For chain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  3. src/runtime/mspanset.go

    	return uint32(h >> 32)
    }
    
    // tail returns the tail of a headTailIndex value.
    func (h headTailIndex) tail() uint32 {
    	return uint32(h)
    }
    
    // split splits the headTailIndex value into its parts.
    func (h headTailIndex) split() (head uint32, tail uint32) {
    	return h.head(), h.tail()
    }
    
    // atomicHeadTailIndex is an atomically-accessed headTailIndex.
    type atomicHeadTailIndex struct {
    	u atomic.Uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

      /** Parses a single value. */
      private interface ValueParser {
        void parse(CacheBuilderSpec spec, String key, @CheckForNull String value);
      }
    
      /** Splits each key-value pair. */
      private static final Splitter KEYS_SPLITTER = Splitter.on(',').trimResults();
    
      /** Splits the key from the value. */
      private static final Splitter KEY_VALUE_SPLITTER = Splitter.on('=').trimResults();
    
      /** Map of names to ValueParser. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilderSpec.java

      /** Parses a single value. */
      private interface ValueParser {
        void parse(CacheBuilderSpec spec, String key, @CheckForNull String value);
      }
    
      /** Splits each key-value pair. */
      private static final Splitter KEYS_SPLITTER = Splitter.on(',').trimResults();
    
      /** Splits the key from the value. */
      private static final Splitter KEY_VALUE_SPLITTER = Splitter.on('=').trimResults();
    
      /** Map of names to ValueParser. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/const.go

    	opBra        = 0x28 /* 1 op, signed 2-byte constant */
    	opEq         = 0x29
    	opGe         = 0x2A
    	opGt         = 0x2B
    	opLe         = 0x2C
    	opLt         = 0x2D
    	opNe         = 0x2E
    	opLit0       = 0x30
    	/* OpLitN = OpLit0 + N for N = 0..31 */
    	opReg0 = 0x50
    	/* OpRegN = OpReg0 + N for N = 0..31 */
    	opBreg0 = 0x70 /* 1 op, signed LEB128 constant */
    	/* OpBregN = OpBreg0 + N for N = 0..31 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. pilot/pkg/credentials/kube/secrets_test.go

    	}, corev1.SecretTypeTLS)
    	tlsMtlsCertSplit = makeSecret("tls-mtls-split", map[string]string{
    		TLSSecretCert: "tls-mtls-split-cert", TLSSecretKey: "tls-mtls-split-key",
    	}, corev1.SecretTypeTLS)
    	tlsMtlsCertSplitCa = makeSecret("tls-mtls-split-cacert", map[string]string{
    		TLSSecretCaCert: "tls-mtls-split-ca",
    	}, corev1.SecretTypeTLS)
    	tlsMtlsCertSplitCaWithCrl = makeSecret("tls-mtls-split-crl-cacert", map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    func ValidateWildcardDomain(domain string) error {
    	if err := CheckDNS1123Preconditions(domain); err != nil {
    		return err
    	}
    	// We only allow wildcards in the first label; split off the first label (parts[0]) from the rest of the host (parts[1])
    	parts := strings.SplitN(domain, ".", 2)
    	if !labels.IsWildcardDNS1123Label(parts[0]) {
    		return fmt.Errorf("domain name %q invalid (label %q invalid)", domain, parts[0])
    	} else if len(parts) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. operator/pkg/compare/compare.go

    	rm := make(map[string]string)
    	if len(rs) == 0 {
    		return rm
    	}
    	for _, r := range strings.Split(rs, ",") {
    		split := strings.Split(r, ":")
    		if len(split) < 4 {
    			rm[r] = ""
    			continue
    		}
    		kind, namespace, name, path := split[0], split[1], split[2], split[3]
    		obj := fmt.Sprintf("%v:%v:%v", kind, namespace, name)
    		rm[obj] = path
    	}
    	return rm
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/pgo_inl_test.go

    	for scanner.Scan() {
    		line := scanner.Text()
    		t.Logf("child: %s", line)
    		if strings.HasPrefix(line, "# ") {
    			curPkg = line[2:]
    			splits := strings.Split(curPkg, " ")
    			curPkg = splits[0]
    			continue
    		}
    		if m := haveInlined.FindStringSubmatch(line); m != nil {
    			fname := m[1]
    			delete(notInlinedReason, curPkg+"."+fname)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top