Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,638 for Dests (0.04 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

        @UsesSample("testing/filtering")
        def "can execute a subset of tests with filtering with #dsl dsl"() {
            given:
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            def result = succeeds("test")
    
            then: "the test task is executed"
            result.assertTaskExecuted(":test")
    
            and: "both tests in SomeIntegTest run and pass"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version_test.go

    		{input: "b.v1.a", out: GroupResource{Group: "v1.a", Resource: "b"}},
    	}
    	for i, test := range tests {
    		out := ParseGroupResource(test.input)
    		if out != test.out {
    			t.Errorf("%d: unexpected output: %#v", i, out)
    		}
    	}
    }
    
    func TestParseResourceArg(t *testing.T) {
    	tests := []struct {
    		input string
    		gvr   *GroupVersionResource
    		gr    GroupResource
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:46:00 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            }
    
            then:
            events.tests.size() == (1 + 2 + 2 + 8) // 1 root suite, 2 worker processes, 2 tests classes, 8 tests
            events.tests == events.successful
            events.tests[0].descriptor.parent == null // 1 root suite with no further parent
            events.tests.tail().every { it.descriptor.parent != null }
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-plugins/README.md

    ## Note about integration and cross-version tests for this subproject
    
    Put plugin integration and cross-version tests into [`:kotlin-dsl-integ-tests`](https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-integ-tests) subproject instead.
    
    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/tfcompile_test.cc

    #include "tensorflow/compiler/aot/tests/test_graph_tfcond_mlir_bridge.h"
    #include "tensorflow/compiler/aot/tests/test_graph_tffunction_mlir_bridge.h"
    #include "tensorflow/compiler/aot/tests/test_graph_tfgather_mlir_bridge.h"
    #include "tensorflow/compiler/aot/tests/test_graph_tfmatmul_mlir_bridge.h"
    #include "tensorflow/compiler/aot/tests/test_graph_tfmatmulandadd_mlir_bridge.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/testing-database.md

    In this example we'll create a temporary database only for the tests.
    
    ## File structure
    
    We create a new file at `sql_app/tests/test_sql_app.py`.
    
    So the new file structure looks like:
    
    ``` hl_lines="9-11"
    .
    └── sql_app
        ├── __init__.py
        ├── crud.py
        ├── database.py
        ├── main.py
        ├── models.py
        ├── schemas.py
        └── tests
            ├── __init__.py
            └── test_sql_app.py
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. operator/pkg/util/path_test.go

    			want: []string{`foo\:bar`, `baz\:qux`},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			if got, want := splitEscaped(tt.in, kvSeparatorRune), tt.want; !stringSlicesEqual(got, want) {
    				t.Errorf("%s: got:%v, want:%v", tt.desc, got, want)
    			}
    		})
    	}
    }
    
    func TestIsNPathElement(t *testing.T) {
    	tests := []struct {
    		desc   string
    		in     string
    		expect bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 29 00:15:38 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  8. tests/tests_all.sh

    #!/bin/bash -e
    
    dialects=("sqlite" "mysql" "postgres" "sqlserver" "tidb")
    
    if [[ $(pwd) == *"gorm/tests"* ]]; then
      cd ..
    fi
    
    if [ -d tests ]
    then
      cd tests
      go get -u -t ./...
      go mod download
      go mod tidy
      cd ..
    fi
    
    # SqlServer for Mac M1
    if [[ -z $GITHUB_ACTION ]]; then
      if [ -d tests ]
      then
        cd tests
        if [[ $(uname -a) == *" arm64" ]]; then
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            (0..10).each { count ->
                assert events.statusMatches("${count} tests? completed(,.*)*")
            }
    
            and:
            (1..3).each { count ->
                assert events.statusMatches("\\d+ tests? completed, ${count} failed(,.*)?")
            }
    
            and:
            (1..2).each { count ->
                assert events.statusMatches("\\d+ tests? completed,( \\d failed,)? ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. schema/model_test.go

    package schema_test
    
    import (
    	"database/sql"
    	"time"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/utils/tests"
    )
    
    type User struct {
    	*gorm.Model
    	Name      *string
    	Age       *uint
    	Birthday  *time.Time
    	Account   *tests.Account
    	Pets      []*tests.Pet
    	Toys      []*tests.Toy `gorm:"polymorphic:Owner"`
    	CompanyID *int
    	Company   *tests.Company
    	ManagerID *uint
    	Manager   *User
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top