Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Step2 (0.04 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            !step1.matches("ABC")
            !step1.matches("other")
    
            and:
            def step2 = PatternStepFactory.getStep("a*?c", true);
            step2 instanceof RegExpPatternStep
            step2.matches("abc")
            step2.matches("abac")
            !step2.matches("ac")
            !step2.matches("ABC")
            !step2.matches("other")
    
            and:
            def step3 = PatternStepFactory.getStep("?bc", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/opensearch/extension/analysis/FlexiblePorterStemFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
    
            step1 = settings.getAsBoolean("step1", true);
            step2 = settings.getAsBoolean("step2", true);
            step3 = settings.getAsBoolean("step3", true);
            step4 = settings.getAsBoolean("step4", true);
            step5 = settings.getAsBoolean("step5", true);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
        assertWithMessage("step2.statusFuture().isCancelled()")
            .that(step2.statusFuture().isCancelled())
            .isTrue();
        // Its closeable is closed.
        assertClosed(closeable2);
    
        // Step 3 was cancelled before it began
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/dom.go

    	// the vertices from 1 to n as they are reached during the search.
    	n := f.dfsOrig(entry, succFn, semi, vertex, label, parent)
    
    	for i := n; i >= 2; i-- {
    		w := vertex[i]
    
    		// step2 in TOPLAS paper
    		for _, e := range predFn(fromID[w]) {
    			v := e.b
    			if semi[v.ID] == 0 {
    				// skip unreachable predecessor
    				// not in original, but we're using existing pred instead of building one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
        assertWithMessage("step2.statusFuture().isCancelled()")
            .that(step2.statusFuture().isCancelled())
            .isTrue();
        // Its closeable is closed.
        assertClosed(closeable2);
    
        // Step 3 was cancelled before it began
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	// Cache under test
    	c := cache.NewStore(cache.DeletionHandlingMetaNamespaceKeyFunc)
    
    	// Store new PV
    	storeVersion(t, "Step1", c, "1", true)
    	// Store the same PV
    	storeVersion(t, "Step2", c, "1", true)
    	// Store newer PV
    	storeVersion(t, "Step3", c, "2", true)
    	// Store older PV - simulating old "PV updated" event or periodic sync with
    	// old data
    	storeVersion(t, "Step4", c, "1", false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top