Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for fwdpattern (1.23 sec)

  1. src/cmd/internal/obj/ppc64/asm_test.go

    	}
    	defer os.RemoveAll(dir)
    
    	// A few interesting test cases for long conditional branch fixups
    	tests := []struct {
    		jmpinsn     string
    		backpattern []string
    		fwdpattern  []string
    	}{
    		// Test the interesting cases of conditional branch rewrites for too-far targets. Simple conditional
    		// branches can be made to reach with one JMP insertion, compound conditionals require two.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

            where:
            context << SnapshotContext.values()
        }
    
        def "can filter files selectively based on pattern (pattern: #fooPattern, context: #context)"() {
            given:
            filters = [
                '**/*.properties': ResourceEntryFilter.FILTER_NOTHING,
                (fooPattern): filter("created-by", "पशुपतिरपि")
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

            String stdout;
            Pattern pidPattern;
            Pattern javaCommandPattern;
    
            public StdoutAndPatterns(String stdout) {
                this.stdout = stdout;
                if (isWindows()) {
                    pidPattern = WINDOWS_PID_PATTERN;
                    javaCommandPattern = WINDOWS_JAVA_COMMAND_PATTERN;
                } else {
                    pidPattern = UNIX_PID_PATTERN;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/constants.go

    	InjectionConfigMap         = "istio-sidecar-injector"
    	InjectionConfigMapValue    = "values"
    	InjectorWebhookConfigKey   = "sidecarInjectorWebhook"
    	InjectorWebhookConfigValue = "enableNamespacesByDefault"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/net/http/routing_index_test.go

    	for i, pat := range patterns {
    		got := indexConflicts(pat, &idx)
    		want := trueConflicts(pat, patterns[:i])
    		if !slices.Equal(got, want) {
    			t.Fatalf("%q:\ngot  %q\nwant %q", pat, got, want)
    		}
    		idx.addPattern(pat)
    	}
    }
    
    func trueConflicts(pat *pattern, pats []*pattern) []string {
    	var s []string
    	for _, p := range pats {
    		if pat.conflictsWith(p) {
    			s = append(s, p.String())
    		}
    	}
    	slices.Sort(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/hosts.go

    }
    
    // GetFullNameFromFQDN tries to parse namespace and name from a fqdn.
    // Empty strings are returned if either namespace or name cannot be parsed.
    func GetFullNameFromFQDN(fqdn string) resource.FullName {
    	result := fqdnPattern.FindAllStringSubmatch(fqdn, -1)
    	if len(result) == 0 {
    		return resource.FullName{
    			Namespace: "",
    			Name:      "",
    		}
    	}
    	return resource.FullName{
    		Namespace: resource.Namespace(result[0][2]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            Pattern pidPattern = isWindows() ? WINDOWS_PID_PATTERN : UNIX_PID_PATTERN;
    
            psOutput.forEach(line -> {
                Matcher commandLineArgsMatcher = commandLineArgsPattern.matcher(line);
                Matcher pidMatcher = pidPattern.matcher(line);
                if (commandLineArgsMatcher.find() && pidMatcher.find()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Doubles.java

        String completeHex = "0[xX]" + hex + "[pP][+-]?\\d+#[fFdD]?";
        String fpPattern = "[+-]?(?:NaN|Infinity|" + completeDec + "|" + completeHex + ")";
        fpPattern =
            fpPattern.replace(
                "#",
                "+"
                );
        return
        java.util.regex.Pattern
            .compile(fpPattern);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Doubles.java

        String completeHex = "0[xX]" + hex + "[pP][+-]?\\d+#[fFdD]?";
        String fpPattern = "[+-]?(?:NaN|Infinity|" + completeDec + "|" + completeHex + ")";
        fpPattern =
            fpPattern.replace(
                "#",
                "+"
                );
        return
        java.util.regex.Pattern
            .compile(fpPattern);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. src/net/http/routing_tree.go

    	children   mapping[string, *routingNode]
    	multiChild *routingNode // child with multi wildcard
    	emptyChild *routingNode // optimization: child with key ""
    }
    
    // addPattern adds a pattern and its associated Handler to the tree
    // at root.
    func (root *routingNode) addPattern(p *pattern, h Handler) {
    	// First level of tree is host.
    	n := root.addChild(p.host)
    	// Second level of tree is method.
    	n = n.addChild(p.method)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top