Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for i32test (0.13 sec)

  1. pkg/util/net/ip_test.go

    Hemendra Teli <******@****.***> 1714574500 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/net/ip_test.go

    Marin Petrunic <******@****.***> 1675267123 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/sourceSets/kotlin/build.gradle.kts

    }
    // end::javadoc[]
    
    // tag::test[]
    tasks.register<Test>("intTest") {
        testClassesDirs = sourceSets["intTest"].output.classesDirs
        classpath = sourceSets["intTest"].runtimeClasspath
    }
    // end::test[]
    
    tasks.named("test") {
        dependsOn("intTest")
    }
    
    tasks.named("build") {
        dependsOn("intTestJavadoc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 789 bytes
    - Viewed (0)
  4. test/fixedbugs/issue5957.dir/c.go

    package p
    
    import (
    	"./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used"
    	"./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used"
    	b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 762 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/kotlin/build.gradle.kts

    plugins {
        idea
        `java-library`
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        create("intTest") {
            java {
                setSrcDirs(listOf("src/integration"))
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets["intTest"].java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/sourceSets/groovy/build.gradle

    }
    // end::javadoc[]
    
    // tag::test[]
    tasks.register('intTest', Test) {
        testClassesDirs = sourceSets.intTest.output.classesDirs
        classpath = sourceSets.intTest.runtimeClasspath
    }
    // end::test[]
    
    tasks.named('test') {
        dependsOn 'intTest'
    }
    
    tasks.named('build') {
        dependsOn 'intTestJavadoc'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 758 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/groovy/build.gradle

    plugins {
        id 'idea'
        id 'java-library'
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        intTest {
            java {
                srcDirs = ['src/integration']
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets.intTest.java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 328 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/basic/groovy/build.gradle

    // tag::integ-test-task[]
    tasks.register('integrationTest', Test) {
        description = 'Runs integration tests.'
        group = 'verification'
    
        testClassesDirs = sourceSets.intTest.output.classesDirs
        classpath = sourceSets.intTest.runtimeClasspath
        shouldRunAfter test
    
        useJUnitPlatform()
    
        testLogging {
            events "passed"
        }
    }
    
    check.dependsOn integrationTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

    // tag::integ-test-task[]
    val integrationTest = task<Test>("integrationTest") {
        description = "Runs integration tests."
        group = "verification"
    
        testClassesDirs = sourceSets["intTest"].output.classesDirs
        classpath = sourceSets["intTest"].runtimeClasspath
        shouldRunAfter("test")
    
        useJUnitPlatform()
    
        testLogging {
            events("passed")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/io/ioutil/ioutil_test.go

    	}
    
    	foundFile := false
    	foundSubDir := false
    	for _, dir := range list {
    		switch {
    		case !dir.IsDir() && dir.Name() == "io_test.go":
    			foundFile = true
    		case dir.IsDir() && dir.Name() == "ioutil":
    			foundSubDir = true
    		}
    	}
    	if !foundFile {
    		t.Fatalf("ReadDir %s: io_test.go file not found", dirname)
    	}
    	if !foundSubDir {
    		t.Fatalf("ReadDir %s: ioutil directory not found", dirname)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top