Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 152 for svctest (0.36 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/SwiftXCTestSuite.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest;
    
    import org.gradle.api.provider.Provider;
    import org.gradle.language.BinaryCollection;
    import org.gradle.language.swift.SwiftComponent;
    import org.gradle.nativeplatform.test.TestSuiteComponent;
    
    /**
     * A XCTest suite, implemented in Swift.
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    	debug.SetTraceback("all")
    
    	var wg sync.WaitGroup
    	const nFast = 10
    
    	t.Run("slow", func(t *testing.T) {
    		t.Parallel()
    		wg.Wait()
    		for i := 0; i < nFast; i++ {
    			// If the subtest goroutines are going to park on the channel
    			// send, allow them to park now. If they're not going to park,
    			// make sure they have had a chance to run to completion so
    			// that they aren't spuriously parked when we panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftSingleFileLibWithSingleXCTestSuite.groovy

                        @Override
                        List<XCTestCaseElement> getTestCases() {
                            return delegate.sumTest.testCases + delegate.greeterTest.testCases + delegate.multiplyTest.testCases
                        }
                    }.withTestableImport(main.moduleName)
                ]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestTestExecutionSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest.internal.execution;
    
    import org.gradle.api.internal.tasks.testing.TestExecutionSpec;
    
    import java.io.File;
    
    /**
     * Describes an XCTest execution run
     */
    public class XCTestTestExecutionSpec implements TestExecutionSpec {
        private final File workingDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/xctest-variant-task-graph.png

    xctest-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    	"golang.org/x/tools/internal/aliases"
    )
    
    //go:embed doc.go
    var doc string
    
    var reportSubtest bool
    
    func init() {
    	Analyzer.Flags.BoolVar(&reportSubtest, "subtest", false, "whether to check if t.Run subtest is terminated correctly; experimental")
    }
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "testinggoroutine",
    	Doc:      analysisutil.MustExtractDoc(doc, "testinggoroutine"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestPluginOnUnsupportedPlatformIntegrationTest.groovy

     * 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 org.gradle.nativeplatform.test.xctest.plugins
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.nativeplatform.fixtures.HostPlatform
    import org.gradle.nativeplatform.fixtures.app.SwiftAppWithXCTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleTest.groovy

        final customSourceFolders = [path('file://$MODULE_DIR$/src'), path('file://$MODULE_DIR$/generated-src')] as LinkedHashSet
        final customTestSourceFolders = [path('file://$MODULE_DIR$/srcTest'), path('file://$MODULE_DIR$/generated-test-src')] as LinkedHashSet
        final customResourceFolders = [path('file://$MODULE_DIR$/resource'), path('file://$MODULE_DIR$/generated-resource')] as LinkedHashSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. src/encoding/csv/example_test.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package csv_test
    
    import (
    	"encoding/csv"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"strings"
    )
    
    func ExampleReader() {
    	in := `first_name,last_name,username
    "Rob","Pike",rob
    Ken,Thompson,ken
    "Robert","Griesemer","gri"
    `
    	r := csv.NewReader(strings.NewReader(in))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 22 11:11:37 UTC 2015
    - 2.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftApplicationProjectInitDescriptor.java

                    "Apply the swift-application plugin to add support for building Swift executables",
                    "swift-application")
                .plugin("Apply the xctest plugin to add support for building and running Swift test executables (Linux) or bundles (macOS)",
                    "xctest")
                .block("Set the target operating system and architecture for this application", "application", this::configureTargetMachineDefinition);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top