Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 907 for SplitV (0.12 sec)

  1. src/regexp/all_test.go

    			continue
    		}
    
    		split := re.Split(test.s, test.n)
    		if !slices.Equal(split, test.out) {
    			t.Errorf("#%d: %q: got %q; want %q", i, test.r, split, test.out)
    		}
    
    		if QuoteMeta(test.r) == test.r {
    			strsplit := strings.SplitN(test.s, test.r, test.n)
    			if !slices.Equal(split, strsplit) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

            String mi = expectString(alias, librariesTable, "module");
            if (mi != null) {
                List<String> split = SPLITTER.splitToList(mi);
                if (split.size() == 2) {
                    group = notEmpty(split.get(0), "group", alias);
                    name = notEmpty(split.get(1), "name", alias);
                } else {
                    throw throwVersionCatalogProblemException(builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    	HasLoopBackIP bool
    }
    
    func split(s string) []string {
    	return config.Split(s)
    }
    
    func (cfg *IptablesConfigurator) separateV4V6(cidrList string) (NetworkRange, NetworkRange, error) {
    	if cidrList == "*" {
    		return NetworkRange{IsWildcard: true}, NetworkRange{IsWildcard: true}, nil
    	}
    	ipv6Ranges := NetworkRange{}
    	ipv4Ranges := NetworkRange{}
    	for _, ipRange := range split(cidrList) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    	}
    	return false
    }
    
    func extract(val string) (op, typ, auxint, aux string, args []string) {
    	val = val[1 : len(val)-1] // remove ()
    
    	// Split val up into regions.
    	// Split by spaces/tabs, except those contained in (), {}, [], or <>.
    	s := split(val)
    
    	// Extract restrictions and args.
    	op = s[0]
    	for _, a := range s[1:] {
    		switch a[0] {
    		case '<':
    			typ = a[1 : len(a)-1] // remove <>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VESRLG $26, h0, T_1  \
    	VN     MOD26, h2, h2 \
    	VN     MOD26, h0, h0 \
    	VAG    T_0, h3, h3   \
    	VAG    T_1, h1, h1   \
    	VESRLG $26, h3, T_2  \
    	VN     MOD26, h3, h3 \
    	VAG    T_2, h4, h4
    
    // EXPAND splits the 128-bit little-endian values in0 and in1
    // into 26-bit big-endian limbs and places the results into
    // the first and second lane of dā‚‚ā‚†[0:4] respectively.
    //
    // The EX0, EX1 and EX2 constants are arrays of byte indices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe.go

    	}
    	split := strings.Split(s[URIPrefixLen:], "/")
    	if len(split) != 5 {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    	if split[1] != NamespaceSegment || split[3] != ServiceAccountSegment {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    	return Identity{
    		TrustDomain:    split[0],
    		Namespace:      split[2],
    		ServiceAccount: split[4],
    	}, nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            }
            fessConfig = ComponentUtil.getFessConfig();
            split(fessConfig.getSuggestFieldContents(), ",")
                    .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(contentFieldNameSet::add));
            split(fessConfig.getSuggestFieldTags(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(tagFieldNameSet::add));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

          return spliterator.tryAdvance(action);
        }
    
        @Override
        @Nullable GeneralSpliterator<E> trySplit() {
          Spliterator<E> split = spliterator.trySplit();
          return split == null ? null : new GeneralSpliteratorOfObject<>(split);
        }
      }
    
      private static final class GeneralSpliteratorOfPrimitive<
              E extends @Nullable Object, C, S extends Spliterator.OfPrimitive<E, C, S>>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload_test.go

    			description:       "Invalid command args - missing service name and namespace",
    			args:              strings.Split("group create", " "),
    			expectedException: true,
    			expectedOutput:    "Error: expecting a workload name\n",
    		},
    		{
    			description:       "Invalid command args - missing service name",
    			args:              strings.Split("group create -n bar", " "),
    			expectedException: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. callbacks/preload.go

    		for _, join := range joins {
    			if _, ok := relationships.Relations[join]; ok && name == join {
    				joined = true
    				continue
    			}
    			joinNames := strings.SplitN(join, ".", 2)
    			if len(joinNames) == 2 {
    				if _, ok := relationships.Relations[joinNames[0]]; ok && name == joinNames[0] {
    					joined = true
    					nestedJoins = append(nestedJoins, joinNames[1])
    				}
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top