Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,881 for otherOk (0.15 sec)

  1. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForJUnitTests/src/test/java/org/gradle/OtherTest.java

     * limitations under the License.
     */
    
    package org.gradle;
    
    import org.junit.Assert;
    
    public class OtherTest {
    
        @org.junit.Test
        public void otherOk() {
            System.out.println("sys out from ok test method");
            System.err.println("sys err from ok test method");
        }
    
        @org.junit.Test
        public void otherFail() {
            Assert.fail();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 944 bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationTestUtils.groovy

            def suiteTestOps = operations.children(firstLevelTestOps[1], ExecuteTestBuildOperationType)
            assert suiteTestOps.size() == 4
            assert suiteTestOps*.details.testDescriptor.name as Set == ["ok", "fail", "otherFail", "otherOk"] as Set
            assert suiteTestOps*.details.testDescriptor.className as Set == ["org.gradle.Test", "org.gradle.Test", "org.gradle.OtherTest", "org.gradle.OtherTest"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    		{
    			name: "Xfcc Header single hop",
    			// nolint lll
    			xfccHeader: `Hash=meshclient;Subject="";URI=spiffe://mesh.example.com/ns/otherns/sa/othersa`,
    			caller: &security.Caller{
    				AuthSource: security.AuthSourceClientCertificate,
    				Identities: []string{
    					"spiffe://mesh.example.com/ns/otherns/sa/othersa",
    				},
    			},
    		},
    		{
    			name: "Xfcc Header multiple hops",
    			// nolint lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/organizingGradleProjects/configureProjectUsingScript/groovy/other.gradle

    println "configuring $project"
    tasks.register('hello') {
        doLast {
            println 'hello from other script'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 120 bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/depmgmt/other-import.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd">
        <modelVersion>4.1.0</modelVersion>
    
        <groupId>test</groupId>
        <artifactId>other-import</artifactId>
        <version>0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>test</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 732 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/groovy/other.gradle

    Laura Kassovic <******@****.***> 1712356553 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 287 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

            def otherJdk = AvailableJavaHomes.differentVersion
    
            writeJvmCriteria(otherJdk)
            captureJavaHome()
    
            when:
            executer.withJavaHome(otherJdk.javaHome)
            withInstallations(otherJdk).succeeds()
            assertDaemonUsedJvm(otherJdk)
    
            then:
            wasNotForked()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/configureObjectUsingScript/groovy/other.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67 bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/MultiChoiceAddressTest.groovy

            UUID id = UUID.randomUUID()
            UUID otherId = UUID.randomUUID()
            def address = new MultiChoiceAddress(id, 1234, [address1])
            def same = new MultiChoiceAddress(id, 1234, [address1])
            def differentPort = new MultiChoiceAddress(id, 1567, [address1])
            def differentCandidates = new MultiChoiceAddress(id, 1234, [address2])
            def differentCanonical = new MultiChoiceAddress(otherId, 1234, [address1])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

        @Override
        String someValue() {
            "{s1}"
        }
    
        @Override
        String someOtherValue() {
            "{other1}"
        }
    
        @Override
        String someOtherValue2() {
            "{other2}"
        }
    
        @Override
        String someOtherValue3() {
            "{other3}"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top