Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for testIde (0.18 sec)

  1. platforms/ide/base-ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/IdePluginTest.groovy

            Task ideTask = project.tasks['testIde']
            ideTask.taskDependencies.getDependencies(ideTask) == [worker] as Set
    
            Task cleaner = project.tasks['cleanGenerateXml']
            cleaner instanceof Delete
        }
    }
    
    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
        @Override protected void onApply(Project target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/TestIdePlugin.groovy

     */
    
    package org.gradle.plugins.ide.internal
    
    import org.gradle.api.Project
    
    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
        @Override protected void onApply(Project target) {
            def worker = target.task('generateXml')
            addWorker(target.getTasks().named(worker.getName()), worker.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1008 bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    		a    int64
    		b    int64
    		fn   func(a, b int64) bool
    		goFn func(a, b int64) bool
    		want bool
    	}{
    		{"BGE", 0, 1, testBGE, testGoBGE, false},
    		{"BGE", 0, 0, testBGE, testGoBGE, true},
    		{"BGE", 0, -1, testBGE, testGoBGE, true},
    		{"BGE", -1, 0, testBGE, testGoBGE, false},
    		{"BGE", 1, 0, testBGE, testGoBGE, true},
    		{"BGEU", 0, 1, testBGEU, testGoBGEU, false},
    		{"BGEU", 0, 0, testBGEU, testGoBGEU, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.s

    #include "textflag.h"
    
    // func testBEQZ(a int64) (r bool)
    TEXT ·testBEQZ(SB),NOSPLIT,$0-9
    	MOV	a+0(FP), X5
    	MOV	$1, X6
    	BEQZ	X5, b
    	MOV	$0, X6
    b:
    	MOV	X6, r+8(FP)
    	RET
    
    // func testBGE(a, b int64) (r bool)
    TEXT ·testBGE(SB),NOSPLIT,$0-17
    	MOV	a+0(FP), X5
    	MOV	b+8(FP), X6
    	MOV	$1, X7
    	BGE	X5, X6, b
    	MOV	$0, X7
    b:
    	MOV	X7, r+16(FP)
    	RET
    
    // func testBGEU(a, b int64) (r bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_go_version_missing.txt

    package dep_test
    
    import _ "example.com/testdep"
    
    -- testdep/go.mod --
    module example.com/testdep
    -- testdep/testdep.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_import_error_stack.txt

    env GO111MODULE=off
    ! go test testdep/p1
    stderr 'package testdep/p1 \(test\)\n\timports testdep/p2\n\timports testdep/p3: build constraints exclude all Go files ' # check for full import stack
    ! go vet testdep/p1
    stderr 'package testdep/p1 \(test\)\n\timports testdep/p2\n\timports testdep/p3: build constraints exclude all Go files ' # check for full import stack
    
    env GO111MODULE=on
    cd testdep
    ! go test testdep/p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 997 bytes
    - Viewed (0)
  8. tests/test_tutorial/test_sql_databases/test_testing_databases.py

    @needs_pydanticv1
    def test_testing_dbs(tmp_path_factory: pytest.TempPathFactory):
        tmp_path = tmp_path_factory.mktemp("data")
        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
        # Import while creating the client to create the DB after starting the test session
        from docs_src.sql_databases.sql_app.tests import test_sql_app
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 788 bytes
    - Viewed (0)
  9. tests/test_tutorial/test_sql_databases/test_testing_databases_py310.py

    @needs_pydanticv1
    def test_testing_dbs_py39(tmp_path_factory: pytest.TempPathFactory):
        tmp_path = tmp_path_factory.mktemp("data")
        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
        # Import while creating the client to create the DB after starting the test session
        from docs_src.sql_databases.sql_app_py310.tests import test_sql_app
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 825 bytes
    - Viewed (0)
  10. tests/test_tutorial/test_sql_databases/test_testing_databases_py39.py

    @needs_pydanticv1
    def test_testing_dbs_py39(tmp_path_factory: pytest.TempPathFactory):
        tmp_path = tmp_path_factory.mktemp("data")
        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
        # Import while creating the client to create the DB after starting the test session
        from docs_src.sql_databases.sql_app_py39.tests import test_sql_app
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 822 bytes
    - Viewed (0)
Back to top