Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 536 for NegExp (1.62 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternStepFactory.java

            int endLiteral = endPrefixWildcard;
            for(; endLiteral < source.length(); endLiteral++) {
                ch = source.charAt(endLiteral);
                if (ch == '?') {
                    // No matches - fall back to regexp
                    return new RegExpPatternStep(source, caseSensitive);
                }
                if (ch == '*') {
                    break;
                }
            }
            if (endLiteral == source.length()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. hack/conformance/check_conformance_test_requirements.go

    func checkAllProviders(e2eFile string) error {
    	checkFailed := false
    	inConformanceCode := false
    
    	regStartConformance := regexp.MustCompile(patternStartConformance)
    	regEndConformance := regexp.MustCompile(patternEndConformance)
    	regSkip := regexp.MustCompile(patternSkip)
    
    	fileInput, err := os.ReadFile(e2eFile)
    	if err != nil {
    		return fmt.Errorf("Failed to read file %s: %w", e2eFile, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 29 06:30:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_rebuildall.txt

    # Regression test for golang.org/issue/6844:
    # 'go test -a' should force dependencies in the standard library to be rebuilt.
    
    [short] skip
    
    go test -x -a -c testdata/dep_test.go
    stderr '^.*[/\\]compile'$GOEXE'["]? (.* )?regexp .*[/\\]regexp\.go'
    
    -- testdata/dep_test.go --
    package deps
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 19 00:08:30 UTC 2019
    - 328 bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	< text/template/parse;
    
    	net/url, text/template/parse
    	< text/template
    	< internal/lazytemplate;
    
    	# regexp
    	FMT, sort
    	< regexp/syntax
    	< regexp
    	< internal/lazyregexp;
    
    	encoding/json, html, text/template, regexp
    	< html/template;
    
    	# suffix array
    	encoding/binary, regexp
    	< index/suffixarray;
    
    	# executable parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"focus": helpText(
    		"Restricts to samples going through a node matching regexp",
    		"Discard samples that do not include a node matching this regexp.",
    		"Matching includes the function name, filename or object name."),
    	"ignore": helpText(
    		"Skips paths going through any nodes matching regexp",
    		"If set, discard samples that include a node matching this regexp.",
    		"Matching includes the function name, filename or object name."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    )
    
    var (
    	hexRe                 = regexp.MustCompile("0x[a-zA-Z0-9]+")
    	numRe                 = regexp.MustCompile(`-?\d+`)
    	stringRe              = regexp.MustCompile(`([^\"]|(\.))*`)
    	leadingDollarNumberRe = regexp.MustCompile(`^[$]\d+`)
    	optOutGdbRe           = regexp.MustCompile("[<]optimized out[>]")
    	numberColonRe         = regexp.MustCompile(`^ *\d+:`)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug_lines_test.go

    	"bufio"
    	"bytes"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    // Matches lines in genssa output that are marked "isstmt", and the parenthesized plus-prefixed line number is a submatch
    var asmLine *regexp.Regexp = regexp.MustCompile(`^\s[vb]\d+\s+\d+\s\(\+(\d+)\)`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/internal/genflags/vetflag.go

    	}
    
    	// parse the flags to figure out which ones stand for analyses
    	analyzerSet := make(map[string]bool)
    	rEnable := regexp.MustCompile("^enable .+ analysis$")
    	for _, flag := range analysisFlags {
    		if rEnable.MatchString(flag.Usage) {
    			analyzerSet[flag.Name] = true
    		}
    	}
    
    	rDeprecated := regexp.MustCompile("^deprecated alias for -(?P<analyzer>(.+))$")
    	// Returns the original value matched by rDeprecated on input value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/podcgroupns.go

    // the regexes must include two named groups "poduid" and "containerid"
    // if the regex needs to exclude certain substrings, the "mustnotmatch" group can be used
    // nolint: lll
    var cgroupREs = []*regexp.Regexp{
    	// the regex used to parse out the pod UID and container ID from a
    	// cgroup name. It assumes that any ".scope" suffix has been trimmed off
    	// beforehand.  CAUTION: we used to verify that the pod and container id were
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. cmd/preferredimports/preferredimports.go

    	regex         = flag.String("include-path", "(test/e2e/|test/e2e_node)", "only files with paths matching this regex is touched")
    	isTerminal    = term.IsTerminal(int(os.Stdout.Fd()))
    	logPrefix     = ""
    	aliases       = map[*regexp.Regexp]string{}
    )
    
    type analyzer struct {
    	fset      *token.FileSet // positions are relative to fset
    	ctx       build.Context
    	failed    bool
    	donePaths map[string]interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top