Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for happen (0.16 sec)

  1. src/cmd/go/internal/work/exec.go

    			cgoObjects = append(cgoObjects, a.Objdir+"_cgo_flags")
    		}
    		cgoObjects = append(cgoObjects, outObj...)
    		gofiles = append(gofiles, outGo...)
    
    		switch cfg.BuildBuildmode {
    		case "c-archive", "c-shared":
    			b.cacheCgoHdr(a)
    		}
    	}
    
    	var srcfiles []string // .go and non-.go
    	srcfiles = append(srcfiles, gofiles...)
    	srcfiles = append(srcfiles, sfiles...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		containerName := fmt.Sprintf("%vcontainer", id)
    		expectedOrder = append(expectedOrder, containerName)
    		cStatus := &kubecontainer.Status{
    			ID:   kubecontainer.BuildContainerID("test", id),
    			Name: containerName,
    		}
    		// Rearrange container statuses
    		if i%2 == 0 {
    			cStatuses = append(cStatuses, cStatus)
    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    //
    // issue https://github.com/kubernetes/kubernetes/pull/23223
    func TestPodIsNotDeletedByDaemonsetWithEmptyLabelSelector(t *testing.T) {
    	// Create a misconfigured DaemonSet. An empty pod selector is invalid but could happen
    	// if we upgrade and make a backwards incompatible change.
    	//
    	// The node selector matches no nodes which mimics the behavior of kubectl delete.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    		}
    		deps = append(deps, "runtime/cgo")
    	}
    	// On ARM with GOARM=5, it forces an import of math, for soft floating point.
    	if cfg.Goarch == "arm" {
    		deps = append(deps, "math")
    	}
    	// Using the race detector forces an import of runtime/race.
    	if cfg.BuildRace {
    		deps = append(deps, "runtime/race")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    func externalNameCases(t TrafficContext) {
    	calls := func(name string, checks ...echo.Checker) []TrafficCall {
    		checks = append(checks, check.OK())
    		ch := []TrafficCall{}
    		for _, c := range t.Apps.A {
    			for _, port := range []echo.Port{ports.HTTP, ports.AutoHTTP, ports.TCP, ports.HTTPS} {
    				c, port := c, port
    				ch = append(ch, TrafficCall{
    					name: port.Name,
    					call: c.CallOrFail,
    					opts: echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	}
    
    	rs.closemu.RLock()
    	defer rs.closemu.RUnlock()
    	return rs.lasterrOrErrLocked(nil)
    }
    
    // rawbuf returns the buffer to append RawBytes values to.
    // This buffer is reused across calls to Rows.Scan.
    //
    // Usage:
    //
    //	rawBytes = rows.setrawbuf(append(rows.rawbuf(), value...))
    func (rs *Rows) rawbuf() []byte {
    	if rs == nil {
    		// convertAssignRows can take a nil *Rows; for simplicity handle it here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		r.Body.Close()
    	}
    	return nil
    }
    
    // golang.org/issue/4741 -- setting only a write timeout that triggers
    // shouldn't cause a handler to block forever on reads (next HTTP
    // request) that will never happen.
    func TestOnlyWriteTimeout(t *testing.T) { run(t, testOnlyWriteTimeout, []testMode{http1Mode}) }
    func testOnlyWriteTimeout(t *testing.T, mode testMode) {
    	var (
    		mu   sync.RWMutex
    		conn net.Conn
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		}
    
    		// Now try again and see if we successfully
    		// pick a new connection.
    		res, err = c.Get(ts.URL + "/")
    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    		slurp, err = io.ReadAll(res.Body)
    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    		nSuccess++
    	}
    	if nSuccess > 0 {
    		t.Logf("successes = %d of %d", nSuccess, trials)
    	} else {
    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. pkg/kubelet/kubelet.go

    	klogVEnabled := klogV.Enabled()
    	for _, s := range podStatus.ContainerStatuses {
    		if s.State == kubecontainer.ContainerStateRunning {
    			runningContainers = append(runningContainers, s.ID.String())
    		}
    		if klogVEnabled {
    			containers = append(containers, container{Name: s.Name, State: string(s.State), ExitCode: s.ExitCode, FinishedAt: s.FinishedAt.UTC().Format(time.RFC3339Nano)})
    		}
    	}
    	if klogVEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        of the MLIR bridge with V1 pipeline in some cases. The pass expects to have
        either none or both of the unified attributes present in an op for the
        conversion to happen. Otherwise it will fail.
    
        For example, `_replication_info="cluster"` and
        `_xla_compile_device_type="TPU"` in the following code
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top