Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for oboo (0.09 sec)

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

            def requested = DefaultModuleComponentSelector.newSelector(mid, new DefaultMutableVersionConstraint("1.0"))
            def failure = new ModuleVersionResolveException(newSelector(mid, "1.2"), new RuntimeException("Boo!"))
    
            def failed = Mock(DependencyGraphEdge) {
                getSelector() >> Stub(DependencyGraphSelector) {
                    getResultId() >> 4L
                    getRequested() >> requested
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/TestFilteringCrossVersionSpec.groovy

            file("src/test/java/FooTest.java") << """
                public class FooTest {
                    @org.junit.Test public void passes() {}
                    @org.junit.Test public void fails() { throw new RuntimeException("Boo!"); }
                }
            """
    
            when:
            withConnection { it.newBuild().withArguments('test', '--tests', 'FooTest.passes').run() }
    
            then:
            noExceptionThrown()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. hack/testdata/scale-deploy-3.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        foo: boo
      name: scale-3
    spec:
      replicas: 1
      selector:
        matchLabels:
          run: hello
      strategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 1
        type: RollingUpdate
      template:
        metadata:
          labels:
            run: hello
        spec:
          containers:
          - image: aronchick/hello-node:2.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 434 bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

            1 * clientsManager.reserveIdleClient(options) >> client
    
            then:
            1 * buildOperationRunner.call(_) >> { args -> args[0].call() }
            1 * client.execute(spec) >> { throw new RuntimeException("Boo!") }
    
            then:
            thrown(RuntimeException)
            1 * clientsManager.release(client)
        }
    
        def "build operation is started and finished when client is executed"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top