Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for oboo (0.13 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            def result2 = new DefaultTestResult(FAILURE, 250, 300, 1, 0, 1, asList(org.gradle.api.tasks.testing.TestFailure.fromTestFrameworkFailure(new RuntimeException("Boo!"))))
    
            when:
            //simulating TestNG, where we don't receive beforeSuite for classes
            collector.beforeSuite(root)
    
            collector.beforeTest(test1)
            collector.beforeTest(test2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

        }
    
        def "handler can be closed and contended action does not run"() {
            when:
            int port = handler.reservePort();
            handler.start(10, { throw new RuntimeException("Boo!") })
            handler.stop()
    
            client.maybePingOwner(port, 10, "lock 1", 50000, null)
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/status/distribution/reporter_test.go

    		{
    			Meta: config.Meta{
    				Namespace:       "default",
    				Name:            "bar",
    				ResourceVersion: "1",
    			},
    		},
    		{
    			Meta: config.Meta{
    				Namespace:       "alternate",
    				Name:            "boo",
    				ResourceVersion: "1",
    			},
    		},
    	}
    	// cast our model.Configs to Resource because these types aren't compatible
    	var myResources []status.Resource
    	col := collections.VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/version/version_test.go

    		{
    			versions:                        []string{"v1.2.3", "boo", "v0.3.0", "2.0.1"},
    			expectedHighestSupportedVersion: "1.2.3",
    			shouldFail:                      false,
    		},
    		{
    			versions:                        []string{},
    			expectedHighestSupportedVersion: "",
    			shouldFail:                      true,
    		},
    		{
    			versions:                        []string{"var", "boo", "foo"},
    			expectedHighestSupportedVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. src/html/template/url_test.go

    		urlNormalizer("http://example.com:80/foo?q=bar%20&baz=x+y#frag")
    	}
    }
    
    func BenchmarkSrcsetFilter(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		srcsetFilterAndEscaper(" /foo/bar.png 200w, /baz/boo(1).png")
    	}
    }
    
    func BenchmarkSrcsetFilterNoSpecials(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		srcsetFilterAndEscaper("http://example.com:80/foo?q=bar%20&baz=x+y#frag")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        @Test public void pass() {}
        @Test public void pass2() {}
        @Test public void passSlowly() {}
        @Test public void passSlowly2() {}
        @Test public void fail() { throw new RuntimeException("Boo!") }
    }
    public class ATestClassWithSlowMethods {
        @Test public void pass() {}
        @Test public void passSlowly() {}
    }
    
    @RunWith(Suite.class)
    @Suite.SuiteClasses([ATestClass.class, BTestClass.class])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                    // but since integration tests are pretty slow we do both in one go, knowing that
                    // configuration-level already has its own test
                    conf.attributes.attribute(quality, 'boo')
                }
    
                dependencies {
                    attributesSchema {
                        attribute(quality)
                    }
                    conf('org.test:module:$requested') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			manifestShouldChange: true,
    		},
    		{
    			description: "any wait error should result in a rollback and an abort 1",
    			waitErrsToReturn: map[string]error{
    				waitForHashes:        errors.New("boo! failed"),
    				waitForHashChange:    nil,
    				waitForPodsWithLabel: nil,
    			},
    			moveFileFunc:         os.Rename,
    			expectedErr:          true,
    			manifestShouldChange: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

            node("c", ComponentSelectionReasons.of(ComponentSelectionReasons.CONFLICT_RESOLUTION))
            node("d")
            resolvedConf("a", [dep("a", "b"), dep("a", "c"), dep("a", "d", new RuntimeException("Boo!"))])
            resolvedConf("b", [])
            resolvedConf("c", [])
            resolvedConf("d", [])
    
            when:
            def deps = builder.getRoot(id("a")).dependencies
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            def dep1 = node(2, "org", "dep1", "2.0", of(CONFLICT_RESOLUTION))
            root.outgoingEdges >> [
                    dep(selector1, 1, 2),
                    dep(selector2, 1, new RuntimeException("Boo!"))
            ]
    
            builder.start(root)
    
            builder.visitNode(root)
            builder.visitNode(dep1)
            builder.visitSelector(selector1)
            builder.visitSelector(selector2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top