Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for Boo (0.02 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultUnresolvedDependencySpec.groovy

            when:
            def module = DefaultModuleIdentifier.newId("org.foo", "foo")
            def dep = new DefaultUnresolvedDependency(DefaultModuleVersionSelector.newSelector(module, '1.0'), new RuntimeException("boo!"))
    
            then:
            dep.selector.group == 'org.foo'
            dep.selector.name == 'foo'
            dep.selector.version == '1.0'
            dep.toString() == 'org.foo:foo:1.0'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K 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. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskIntegrationTest.groovy

                    outputs.cacheIf { true }
                    doLast {
                        outFile << "xxx"
                        if (System.getProperty("fail")) {
                            throw new RuntimeException("Boo!")
                        }
                    }
                }
            """
    
            expect:
            executer.withStackTraceChecksDisabled()
            withBuildCache().fails "foo", "-Dfail=yes"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 17:51:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

        }
    
        def "can get extensions schema"() {
            given:
            container.create Parent, 'foo', Child
            container.create Capability, 'bar', Impl
            container.create 'boo', Child
            container.add new TypeOf<List<String>>() {}, 'baz', []
            container.add "cat", new Thing("gizmo")
            container.add "meo", container.instanceGenerator.newInstance(Thing, "w")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top