Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for testIde (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

                apply plugin: 'java'
                group = 'org.gradle'
                version = '2.0'
    
                dependencies {
                    implementation "org.test:dep:1.3.0"
                    implementation "org.test:dep:1.4.0"
                }
            """
            def commit = repo.commit('initial commit')
            repo.createLightWeightTag('1.3.0')
            def javaFile = file('dep/src/main/java/Dep.java')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	run(t, testServeWithSlashRedirectKeepsQueryString, []testMode{http1Mode})
    }
    func testServeWithSlashRedirectKeepsQueryString(t *testing.T, mode testMode) {
    	writeBackQuery := func(w ResponseWriter, r *Request) {
    		fmt.Fprintf(w, "%s", r.URL.RawQuery)
    	}
    
    	mux := NewServeMux()
    	mux.HandleFunc("/testOne", writeBackQuery)
    	mux.HandleFunc("/testTwo/", writeBackQuery)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_plugin_non_main.txt

    # Plugins are not supported on all platforms.
    [!buildmode:plugin] skip
    
    go build -n testdep
    ! go build -buildmode=plugin testdep
    stderr '-buildmode=plugin requires exactly one main package'
    
    -- go.mod --
    module testdep
    
    go 1.16
    -- testdep.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 12 15:28:43 UTC 2020
    - 255 bytes
    - Viewed (0)
  7. 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)
  8. src/net/http/transport_test.go

    // Two subsequent requests and verify their response is the same.
    // The response from the server is our own IP:port
    func TestTransportKeepAlives(t *testing.T) { run(t, testTransportKeepAlives, []testMode{http1Mode}) }
    func testTransportKeepAlives(t *testing.T, mode testMode) {
    	ts := newClientServerTest(t, mode, hostPortHandler).ts
    
    	c := ts.Client()
    	for _, disableKeepAlive := range []bool{false, true} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_sql_databases/test_sql_databases_middleware.py

    from dirty_equals import IsDict
    from fastapi.testclient import TestClient
    
    from ...utils import needs_pydanticv1
    
    
    @pytest.fixture(scope="module")
    def client():
        test_db = Path("./sql_app.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 import alt_main
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/runtime/fds_test.go

    	"internal/testenv"
    	"os"
    	"strings"
    	"testing"
    )
    
    func TestCheckFDs(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    
    	testenv.MustHaveGoBuild(t)
    
    	fdsBin, err := buildTestProg(t, "testfds")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	i, err := os.CreateTemp(t.TempDir(), "fds-input")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err := i.Write([]byte("stdin")); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 16:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top