Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 635 for TestTd (0.15 sec)

  1. cmd/import-boss/testdata/nested-fwd/bbb/file.go

    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-sub"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 563 bytes
    - Viewed (0)
  2. pkg/volume/util/nested_volumes.go

    			// Because of this, we should use a list of previously mounted mountpoints, rather than only one.
    			prevNestedMPs := []string{}
    			// examine each mount point to see if it's nested beneath this volume
    			// (but skip any that are double-nested beneath this volume)
    			// For example, if this volume is mounted as /dir and other volumes are mounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    go list -f $MODFMT example.net/ambiguous/nested/pkg
    stdout '^example.net/ambiguous/nested v0\.1\.0$'
    ! stderr .
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout all-m.txt
    
    ! go list -f $MODFMT example.net/ambiguous/nested/pkg
    stderr '^ambiguous import: found package example\.net/ambiguous/nested/pkg in multiple modules:\n\texample\.net/ambiguous v0\.1\.0 \(.*\)\n\texample\.net/ambiguous/nested v0\.1\.0 \(.*\)\n'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ProjectRootOfTest.kt

                listOf(arrayOf("settings.gradle"), arrayOf("settings.gradle.kts"))
        }
    
        @Test
        fun `given a script file under a nested project it should return the nested project root`() {
    
            withFolders {
                "root" {
                    "nested-project-root" {
                        // a nested project is detected by the presence of a settings file
                        withFile(settingsFileName)
                        "sub-project" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        @Override
        boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            testClasses[classId]?.outputEvents?.find { it.testId == testId && it.testOutputEvent.destination == destination }
        }
    
        static class BuildableOutputEvent {
            long testId
            TestOutputEvent testOutputEvent
    
            BuildableOutputEvent(long testId, TestOutputEvent testOutputEvent) {
                this.testId = testId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

        }
    
        @Override
        public final void output(Object testId, TestOutputEvent event) {
            delegate.output(findDescriptor(testId), event);
        }
    
        private TestDescriptorInternal findDescriptor(Object testId) {
            TestState state = executing.get(testId);
            if (state != null) {
                return state.test;
            }
    
            if (currentParent != null) {
                return currentParent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginTreeTest.kt

            val flatPlugin = PluginTree.PluginSpec("flat-plugin", "FlatPlugin")
            val nestedPluginA = PluginTree.PluginSpec("nested.plugin-a", "NestedPluginA")
            val nestedPluginB = PluginTree.PluginSpec("nested.other.plugin-b", "NestedPluginB")
            val nestedPluginC = PluginTree.PluginSpec("nested.other.plugin-c", "NestedPluginC")
            assertThat(
                PluginTree.of(
                    listOf(
                        flatPlugin,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            includedBuildSrc.editableBuilds.empty
    
            def nested = model.editableBuilds[3]
            nested.buildIdentifier.rootDir == file("child/nested")
            nested.includedBuilds.empty
            nested.editableBuilds.empty
            included.includedBuilds[0].is(nested)
    
            def nestedBuildSrc = model.editableBuilds[4]
            nestedBuildSrc.buildIdentifier.rootDir == file("child/nested/buildSrc")
            nestedBuildSrc.includedBuilds.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

                this.testId = testId
                this.groups = groups
            }
    
            @Override
            String toString() {
                return "Test($testId)"
            }
    
            @JsonInclude(JsonInclude.Include.NON_NULL)
            @EqualsAndHashCode
            static class GroupsBean {
                /**
                 * testProject : largeJavaMultiProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

     * and then the properties are visited in depth-first order.
     * Nested properties are marked with a nested annotation and are inspected for child properties that can be
     * "leaf" annotated properties, or other nested properties.
     * The {@link TypeMetadataStore} associated with the walker determines which non-nested property annotations are recognized
     * during the walk.
     * Nested {@code Map}s, {@code Iterable}s are resolved as child properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top