Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for xdabce (0.23 sec)

  1. src/regexp/all_test.go

    	// Start and end of a string.
    	{"^[a-c]*", "x", "abcdabc", "xdabc"},
    	{"[a-c]*$", "x", "abcdabc", "abcdx"},
    	{"^[a-c]*$", "x", "abcdabc", "abcdabc"},
    	{"^[a-c]*", "x", "abc", "x"},
    	{"[a-c]*$", "x", "abc", "x"},
    	{"^[a-c]*$", "x", "abc", "x"},
    	{"^[a-c]*", "x", "dabce", "xdabce"},
    	{"[a-c]*$", "x", "dabce", "dabcex"},
    	{"^[a-c]*$", "x", "dabce", "dabce"},
    	{"^[a-c]*", "x", "", "x"},
    	{"[a-c]*$", "x", "", "x"},
    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. cni/pkg/nodeagent/netns_linux.go

    }
    
    // inspired by netns.Do() but with an existing fd.
    func NetnsDo(fdable NetnsFd, toRun func() error) error {
    	containedCall := func() error {
    		threadNS, err := netns.GetCurrentNS()
    		if err != nil {
    			return fmt.Errorf("failed to open current netns: %v", err)
    		}
    		defer threadNS.Close()
    
    		// switch to target namespace
    		if err = NetnsSet(fdable); err != nil {
    			return err
    		}
    		defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 10:05:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. test/label1.go

    	}
    
    	break // ERROR "break is not in a loop, switch, or select|break statement not within for or switch or select"
    	for {
    		break dance // ERROR "break label not defined: dance|invalid break label .*dance"
    	}
    
    	for {
    		switch x {
    		case 1:
    			continue
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/netns_other.go

    	return errors.New("not implemented")
    }
    
    func OpenNetns(nspath string) (NetnsCloser, error) {
    	return nil, errors.New("not implemented")
    }
    
    // inspired by netns.Do() but with an existing fd.
    func NetnsDo(fdable NetnsFd, toRun func() error) error {
    	return errors.New("not implemented")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 14 09:32:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/WithOldConfigurationsSupport.groovy

    @SelfType(ToolingApiSpecification)
    trait WithOldConfigurationsSupport {
        private static final GradleVersion V6_9 = GradleVersion.version("6.9")
    
        private GradleVersion baseVersion() {
            // This weird dance is because of the `GradleVersion` comes from a different classloader
            GradleVersion.version(targetDist.version.baseVersion.version)
        }
    
        String getImplementationConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/graph/TraverserTest.java

        assertEqualCharNodes(traverser.breadthFirst('b'), "bcda");
        assertEqualCharNodes(traverser.breadthFirst('c'), "cdab");
        assertEqualCharNodes(traverser.breadthFirst('d'), "dabc");
      }
    
      @Test
      public void forGraph_breadthFirstIterable_cycle() {
        Traverser<Character> traverser = Traverser.forGraph(CYCLE_GRAPH);
        assertEqualCharNodes(traverser.breadthFirst(charactersOf("a")), "abcd");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/graph/TraverserTest.java

        assertEqualCharNodes(traverser.breadthFirst('b'), "bcda");
        assertEqualCharNodes(traverser.breadthFirst('c'), "cdab");
        assertEqualCharNodes(traverser.breadthFirst('d'), "dabc");
      }
    
      @Test
      public void forGraph_breadthFirstIterable_cycle() {
        Traverser<Character> traverser = Traverser.forGraph(CYCLE_GRAPH);
        assertEqualCharNodes(traverser.breadthFirst(charactersOf("a")), "abcd");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/podcgroupns.go

    	// check if it is a number
    	if strings.IndexFunc(entry.Name(), isNotNumber) != -1 {
    		return false
    	}
    	return true
    }
    
    func GetFd(f fs.File) (uintptr, error) {
    	if fdable, ok := f.(interface{ Fd() uintptr }); ok {
    		return fdable.Fd(), nil
    	}
    
    	return 0, fmt.Errorf("unable to get fd")
    }
    
    /// mostly copy pasted from spire below:
    
    // regexes listed here have to exclusively match a cgroup path
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/strings/search.go

    	// to shift the frame to align this portion of the prefix to the
    	// suffix. For example, in the pattern "abcxxxabc", when the first
    	// mismatch from the back is found to be in position 3, the matching
    	// suffix "xxabc" is not found elsewhere in the pattern. However, its
    	// rightmost "abc" (at position 6) is a prefix of the whole pattern, so
    	// goodSuffixSkip[3] == shift+len(suffix) == 6+5 == 11.
    	goodSuffixSkip []int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            "abc"               | "  "   | "  abc"
            "abc"               | "def"  | "defabc"
            "abc\ndef\nghi"     | " "    | " abc\n def\n ghi"
            "abc\n\t\n   \nghi" | "X"    | "Xabc\n\t\n   \nXghi"
        }
    
        def shorterOf() {
            expect:
            TextUtil.shorterOf("a", "b") == "a"
            TextUtil.shorterOf("aa", "b") == "b"
            TextUtil.shorterOf("a", "bb") == "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top