Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for nothings (0.16 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    	// Expect LastHeartbeat updated, other things unchanged.
    	for i, cond := range expectedNode.Status.Conditions {
    		expectedNode.Status.Conditions[i].LastHeartbeatTime = metav1.NewTime(cond.LastHeartbeatTime.Time.Add(time.Minute)).Rfc3339Copy()
    	}
    	assert.True(t, apiequality.Semantic.DeepEqual(expectedNode, updatedNode), "%s", cmp.Diff(expectedNode, updatedNode))
    
    	// Update node status again when nothing is changed (except heartbeat time).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

        >,
        precision_config = [#stablehlo<precision DEFAULT>, #stablehlo<precision DEFAULT>]
      } : (tensor<1x2x3x4xf32>, tensor<1x2x4x5xf32>) -> tensor<1x2x3x5xf32>
      return %0 : tensor<1x2x3x5xf32>
    }
    // Do nothing for float operands
    // CHECK: stablehlo.dot_general
    // CHECK-NOT: tfl.batch_matmul
    
    // -----
    
    // Tests static range quantized dot_general with asymmetric weight (rhs).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    // the vendored paths, so nothing should ever call p.vendored(p.Imports).
    func (p *Package) Resolve(imports []string) []string {
    	if len(imports) > 0 && len(p.Imports) > 0 && &imports[0] == &p.Imports[0] {
    		panic("internal error: p.Resolve(p.Imports) called")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    		},
    		{
    			name: "NothingWrittenNoBody",
    			// It's key that we return 0 here -- that's what enables Transport to know
    			// that nothing was written, even though this is a non-idempotent request.
    			failureN:   0,
    			failureErr: errors.New("second write fails"),
    			req: func() *Request {
    				return newRequest("DELETE", "http://fake.golang", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	for {
    		select {
    		case entry := <-traceCh:
    			if _, err := w.Write(entry); err != nil {
    				return
    			}
    			grid.PutByteBuffer(entry)
    			if len(traceCh) == 0 {
    				// Flush if nothing is queued
    				w.(http.Flusher).Flush()
    			}
    		case <-keepAliveTicker.C:
    			if len(traceCh) > 0 {
    				continue
    			}
    			if _, err := w.Write([]byte(" ")); err != nil {
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    		expectedNewlyActiveUDPServices map[proxy.ServicePortName]bool
    		expectedLocalEndpoints         map[types.NamespacedName]int
    	}{{
    		// Case[0]: nothing
    		name:                           "nothing",
    		oldEndpoints:                   map[proxy.ServicePortName][]endpointExpectation{},
    		expectedResult:                 map[proxy.ServicePortName][]endpointExpectation{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		if err := b.loadCachedCompiledGoFiles(a); err != nil {
    			return fmt.Errorf("loading compiled Go files from cache: %w", err)
    		}
    		need &^= needCompiledGoFiles
    	}
    	if need == 0 {
    		// Nothing left to do.
    		return nil
    	}
    
    	// Collect symbol ABI requirements from assembly.
    	symabis, err := BuildToolchain.symabis(b, a, sfiles)
    	if err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    		expectedNewlyActiveUDPServices map[proxy.ServicePortName]bool
    		expectedReadyEndpoints         map[types.NamespacedName]int
    	}{{
    		// Case[0]: nothing
    		name:                           "nothing",
    		oldEndpoints:                   map[proxy.ServicePortName][]endpointExpectation{},
    		expectedResult:                 map[proxy.ServicePortName][]endpointExpectation{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    		// cancel on pipelined HTTP requests caused problems.
    		// Fortunately, almost nothing uses HTTP/1.x pipelining.
    		// Unfortunately, apt-get does, or sometimes does.
    		// New Go 1.11 behavior: don't fire CloseNotify or cancel
    		// contexts on pipelined requests. Shouldn't affect people, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    func TestClientCanClose(t *testing.T) {
    	testTCPConnectionCloses(t, "GET / HTTP/1.1\r\nHost: foo\r\nConnection: close\r\n\r\n", HandlerFunc(func(w ResponseWriter, r *Request) {
    		// Nothing.
    	}))
    }
    
    // TestHandlersCanSetConnectionClose verifies that handlers can force a connection to close,
    // even for HTTP/1.1 requests.
    func TestHandlersCanSetConnectionClose11(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top