Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Step1 (0.03 sec)

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

        def "creates step for * suffix and prefix wildcard"() {
            expect:
            def step1 = PatternStepFactory.getStep("a*c", true);
            step1 instanceof HasPrefixAndSuffixPatternStep
    
            step1.matches("ac")
            step1.matches("abac")
            !step1.matches("bc")
            !step1.matches("ab")
            !step1.matches("a")
            !step1.matches("c")
    
            and:
            def step2 = PatternStepFactory.getStep("a**c", 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. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        step2Waiter.awaitReturned();
        step4Waiter.awaitStarted();
    
        // Step 1 is not cancelled because it was done.
        assertWithMessage("step1.statusFuture().isCancelled()")
            .that(step1.statusFuture().isCancelled())
            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
    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. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        step2Waiter.awaitReturned();
        step4Waiter.awaitStarted();
    
        // Step 1 is not cancelled because it was done.
        assertWithMessage("step1.statusFuture().isCancelled()")
            .that(step1.statusFuture().isCancelled())
            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_test.go

    // TestControllerCache tests func storeObjectUpdate()
    func TestControllerCache(t *testing.T) {
    	// 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
    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