Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for happen (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertContent("This connection won't pool properly", response1)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
        // Give the server time to enact the socket policy if it's one that could happen after the
        // client has received the response.
        Thread.sleep(500)
        val response2 = getResponse(newRequest("/b"))
        response1.body.source().timeout().timeout(100, TimeUnit.MILLISECONDS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

      }
    }
    // -----
    
    // Tests that a an error is reported when the pass results in a cluster output
    // with a non-XLA type. The simplest way this can happen is if the inputing op
    // is not marked for outside compilation. In general control, data, and side
    // effect dependencies that are not marked for outside compilation can cause
    // this.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K 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