Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for buildNum (0.08 sec)

  1. src/net/tcpsock_test.go

    			continue
    		}
    		ls := (&streamListener{Listener: ln}).newLocalServer()
    		defer ls.teardown()
    		ch := make(chan error, 1)
    		handler := func(ls *localServer, ln Listener) { ls.transponder(ln, ch) }
    		if err := ls.buildup(handler); err != nil {
    			t.Fatal(err)
    		}
    		if la, ok := ln.Addr().(*TCPAddr); !ok || !tt.nameLookup && la.Zone == "" {
    			t.Fatalf("got %v; expected a proper address with zone identifier", la)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. src/net/error_test.go

    				}
    				if nerr, ok := err.(Error); !ok || (!nerr.Timeout() && !nerr.Temporary()) {
    					return
    				}
    				continue
    			}
    			c.Close()
    		}
    	}
    	ls := newLocalServer(t, "tcp")
    	if err := ls.buildup(handler); err != nil {
    		ls.teardown()
    		t.Fatal(err)
    	}
    
    	time.Sleep(100 * time.Millisecond)
    	ls.teardown()
    }
    
    // parseCommonError parses nestedErr and reports whether it is a valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    	}
    	if len(f) > 0 {
    		action = f[0]
    		args = f[1:]
    	}
    
    	// TODO: Clean up/simplify this switch statement.
    	switch action {
    	case "compile", "compiledir", "build", "builddir", "buildrundir", "run", "buildrun", "runoutput", "rundir", "runindir", "asmcheck":
    		// nothing to do
    	case "errorcheckandrundir":
    		wantError = false // should be no error if also will run
    	case "errorcheckwithauto":
    		action = "errorcheck"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate_test.go

    		mustNotSelect(t, mustGetLabels(t, pdbRev, "spec.selector.matchLabels"), podLabels15)
    	})
    }
    
    // TestLDFlags checks whether building mesh command with
    // -ldflags "-X istio.io/istio/pkg/version.buildHub=myhub -X istio.io/istio/pkg/version.buildVersion=mytag"
    // results in these values showing up in a generated manifest.
    func TestLDFlags(t *testing.T) {
    	tmpHub, tmpTag := version.DockerInfo.Hub, version.DockerInfo.Tag
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top