Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for buildrun (0.18 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/cmd/go/internal/cfg/cfg.go

    	BuildCover         bool                    // -cover flag
    	BuildCoverMode     string                  // -covermode flag
    	BuildCoverPkg      []string                // -coverpkg flag
    	BuildN             bool                    // -n flag
    	BuildO             string                  // -o flag
    	BuildP             = runtime.GOMAXPROCS(0) // -p flag
    	BuildPGO           string                  // -pgo flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    	b := new(Builder)
    
    	b.actionCache = make(map[cacheKey]*Action)
    	b.toolIDCache = make(map[string]string)
    	b.buildIDCache = make(map[string]string)
    
    	if workDir != "" {
    		b.WorkDir = workDir
    	} else if cfg.BuildN {
    		b.WorkDir = "$WORK"
    	} else {
    		if !buildInitStarted {
    			panic("internal error: NewBuilder called before BuildInit")
    		}
    		tmp, err := os.MkdirTemp(cfg.Getenv("GOTMPDIR"), "go-build")
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/internal/test/test.go

    			if strings.HasPrefix(arg, "-test.coverprofile=") {
    				args[i] = "-test.coverprofile=" + coverProfTempFile(a)
    			}
    		}
    	}
    
    	if cfg.BuildN || cfg.BuildX {
    		sh.ShowCmd("", "%s", strings.Join(args, " "))
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    	// Normally, the test will terminate itself when the timeout expires,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. 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)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    new File(pom.getValue("properties/buildScriptSrc").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target"),
                    new File(pom.getValue("properties/buildOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/classes"),
                    new File(pom.getValue("properties/buildMainOut").toString()));
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    			// Disallow installs to the GOROOT from which testgo was built.
    			// Installs to other GOROOTs — such as one set explicitly within a test — are ok.
    			work.AllowInstall = func(a *work.Action) error {
    				if cfg.BuildN {
    					return nil
    				}
    
    				rel := search.InDir(a.Target, testGOROOT)
    				if rel == "" {
    					return nil
    				}
    
    				callerPos := ""
    				if _, file, line, ok := runtime.Caller(1); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top