Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Boo (0.02 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

                        throw new RuntimeException("Boo!");
                    }
                }
            """
            file("src/test/java/org/gradle/OtherTest.java") << """
                package org.gradle;
                ${testFrameworkImports}
                public class OtherTest {
                    @Test public void pass() {}
                    @Test public void fail() { throw new RuntimeException("Boo!"); }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/instancecount_test.go

    				},
    			),
    		},
    		{
    			testName:      "no existing sctp endpoints",
    			serviceName:   "boo",
    			ip:            "1.2.3.4",
    			endpointPorts: []corev1.EndpointPort{{Name: "boo", Port: 7777, Protocol: "SCTP"}},
    			initialState:  nil,
    			expectCreate:  makeEndpointsArray("boo", []string{"1.2.3.4"}, []corev1.EndpointPort{{Name: "boo", Port: 7777, Protocol: "SCTP"}}),
    		},
    	}
    	for _, test := range reconcileTests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers_test.go

    				{
    					Name:  "VAR_TEST",
    					Value: "zoo",
    				},
    				{
    					Name:  "VAR_TEST2",
    					Value: "boo",
    				},
    				{
    					Name:  "VAR_TEST3",
    					Value: "roo",
    				},
    			},
    			expectedCommand: []string{"boo--zoo", "foo", "roo"},
    			expectedArgs:    []string{"foo", "zoo", "boo"},
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                    it.prefer('1.2')
                    it.strictly('[1.0, 2.0[')
                }
                library('bar', 'group', 'bar').versionRef('barVersion')
                library('boo', 'group', 'boo').withoutVersion()
                plugin('fooPlugin', 'org.foo.plugin').version('1.0')
                plugin('barPlugin', 'org.bar.plugin').versionRef('barVersion')
                plugin('bazPlugin', 'org.baz.plugin').version('')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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/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)
  10. pkg/volume/csi/csi_plugin_test.go

    			shouldFail: false,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"v1.2.3", "boo", "v0.3.0", "2.0.1"},
    			shouldFail: false,
    		},
    		{
    			pluginName: "test.plugin",
    			endpoint:   "/var/log/kubelet/plugins_registry/myplugin/csi.sock",
    			versions:   []string{"4.9.12", "2.0.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top