Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for testIde (0.16 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/controller/volume/attachdetach/statusupdater/node_status_updater_test.go

    			}
    		}
    	}
    }
    
    // TestNodeStatusUpdater_UpdateNodeStatusForNode calls setup
    // calls UpdateNodeStatusesForNode on testnode-1
    // check that asw.GetVolumesToReportAttached reports testnode-2 needs to be reported
    // checks that testnode-1 status.volumesAttached is of length 1 and contains the correct volume
    func TestNodeStatusUpdater_UpdateNodeStatusForNode(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

            succeeds("assemble")
            assertRepoNotCheckedOut()
        }
    
        @ToBeFixedForConfigurationCache
        def "last vcs mapping rule wins"() {
            mappingFor("does-not-exist", "org.test:dep")
            mappingFor(repo, "org.test:dep")
            expect:
            succeeds("assemble")
            assertRepoCheckedOut()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    package main
    import "testing"
    func TestNopgo(*testing.T) {}
    -- dep/dep.go --
    package dep
    import _ "test/dep3"
    -- dep2/dep2.go --
    package dep2
    -- dep3/dep3.go --
    package dep3
    -- testdep/testdep.go --
    package testdep
    import _ "test/testdep2"
    -- testdep2/testdep2.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultbinder/default_binder_test.go

    	testPod := st.MakePod().Name("foo").Namespace("ns").Obj()
    	testNode := "foohost.kubernetes.mydomain.com"
    	tests := []struct {
    		name        string
    		injectErr   error
    		wantBinding *v1.Binding
    	}{
    		{
    			name: "successful",
    			wantBinding: &v1.Binding{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: "foo"},
    				Target:     v1.ObjectReference{Kind: "Node", Name: testNode},
    			},
    		}, {
    			name:      "binding error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top