Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for kindid (0.18 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4RerunPreviousFailedTestIntegrationTest.groovy

            List<String> lines = output.readLines()
            boolean findIt = false
            for (String line in lines) {
                if (line.contains("Test index ${failedTestIndex}")) {
                    findIt = true
                    break
                } else if (line.contains("Test index")) {
                    assert false
                }
            }
    
            assert findIt
        }
    
    
        def 'can delete previous failed test'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestReportTest.groovy

        }
    
        def "can attach result dirs"() {
            def binDir = temporaryFolder.file("other")
    
            when:
            reportTask.testResults.from(binDir)
    
            then:
            reportTask.testResults.files as List == [binDir]
        }
    
        def test(String name) {
            def test = TestUtil.createTask(Test, project, name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

    
    internal
    fun IO.buildPluginDependencySpecAccessorsFor(
        pluginDescriptorsClassPath: ClassPath,
        srcDir: File,
        binDir: File
    ) {
        makeAccessorOutputDirs(srcDir, binDir, kotlinDslPackagePath)
    
        val pluginTrees = pluginTreesFrom(pluginDescriptorsClassPath)
    
        val baseFileName = "$kotlinDslPackagePath/PluginDependencySpecAccessors"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocator.java

            return COMPONENT_NAME;
        }
    
        @Override
        String getDisplayName() {
            return DISPLAY_NAME;
        }
    
        @Override
        boolean isValidComponentBinDir(File binDir) {
            // Nothing special to check for UCRT
            return true;
        }
    
        @Override
        boolean isValidComponentIncludeDir(File includeDir) {
            return new File(includeDir, "io.h").exists();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/options.go

    // for each version in the bundledVersions list.
    func validateBundledVersions(bundledVersions SupportedVersions, binDir string) error {
    	for _, v := range bundledVersions {
    		for _, binaryName := range []string{"etcd", "etcdctl"} {
    			fn := filepath.Join(binDir, fmt.Sprintf("%s-%s", binaryName, v))
    			if _, err := os.Stat(fn); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            withClassLoaderFor(binDir) {
                // when:
                buildAccessorsFromSourceFor(
                    schema,
                    testRuntimeClassPath,
                    srcDir,
                    binDir
                )
    
                val binaryAccessorsDir = File(binDir, "org/gradle/kotlin/dsl")
    
                // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. operator/pkg/util/reflect.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"fmt"
    	"reflect"
    )
    
    // kindOf returns the reflection Kind that represents the dynamic type of value.
    // If value is a nil interface value, kindOf returns reflect.Invalid.
    func kindOf(value any) reflect.Kind {
    	if value == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  8. src/runtime/metrics/example_test.go

    	// Check if the metric is actually supported.
    	// If it's not, the resulting value will always have
    	// kind KindBad.
    	if sample[0].Value.Kind() == metrics.KindBad {
    		panic(fmt.Sprintf("metric %q no longer supported", myMetric))
    	}
    
    	// Handle the result.
    	//
    	// It's OK to assume a particular Kind for a metric;
    	// they're guaranteed not to change.
    	freeBytes := sample[0].Value.Uint64()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 08 16:09:01 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/nl/stemmer_override.txt

    fiets=>fiets
    bromfiets=>bromfiets
    ei=>eier
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Jul 17 13:47:36 UTC 2018
    - 56 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginSpecBuilderAccessorsClassPathTest.kt

            )
    
            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            // when:
            withSynchronousIO {
                buildPluginDependencySpecAccessorsFor(
                    pluginDescriptorsClassPath = classPathOf(pluginsJar),
                    srcDir = srcDir,
                    binDir = binDir
                )
            }
    
            // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top