Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for efter (0.11 sec)

  1. src/net/http/serve_test.go

    	t0 := time.Now()
    	select {
    	case got := <-shutdownRes:
    		d := time.Since(t0)
    		if got != nil {
    			t.Fatalf("shutdown error after %v: %v", d, err)
    		}
    		if d < expectTimeout/2 {
    			t.Errorf("shutdown too soon after %v", d)
    		}
    	case <-time.After(expectTimeout * 3 / 2):
    		t.Fatalf("timeout waiting for shutdown")
    	}
    
    	// Wait for c.Read to unblock; should be already done at this point,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    		Name   string
    		Before []v1.NodeAddress
    		After  []v1.NodeAddress
    	}{
    		{
    			Name:   "nil to populated",
    			Before: nil,
    			After: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    			Name:   "empty to populated",
    			Before: []v1.NodeAddress{},
    			After: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          %4 = "tf.C"(%2, %3) {device = "tpu0"} : (tensor<?xi32>, tensor<?xi32>) -> tensor<?xi32>
          %5 = "tf.D"(%4) : (tensor<?xi32>) -> tensor<?xi32>
        ```
    
        After the pass, we will have:
    
        ```mlir
          %0 = "tf.A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
          %1 = "tf_device.launch"() ( {
            %3 = "tf.B"(%0) : (tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    		}
    	}()
    	// waiting for the assumed pod to expire
    	select {
    	case err := <-errChan:
    		t.Fatal(err)
    	case <-waitPodExpireChan:
    	case <-time.After(wait.ForeverTestTimeout):
    		close(timeout)
    		t.Fatalf("timeout timeout in waiting pod expire after %v", wait.ForeverTestTimeout)
    	}
    
    	// We use conflicted pod ports to incur fit predicate failure if first pod not removed.
    	secondPod := podWithPort("bar", "", 8080)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	return err
    }
    
    // Close returns the connection to the connection pool.
    // All operations after a Close will return with [ErrConnDone].
    // Close is safe to call concurrently with other operations and will
    // block until all other operations finish. It may be useful to first
    // cancel any used context and then call close directly after.
    func (c *Conn) Close() error {
    	return c.close(nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // executable to an output file named after the last non-major-version
    // component of the package import path. The '.exe' suffix is added
    // when writing a Windows executable.
    // So 'go build example/sam' writes 'sam' or 'sam.exe'.
    // 'go build example.com/foo/v2' writes 'foo' or 'foo.exe', not 'v2.exe'.
    //
    // When compiling a package from a list of .go files, the executable
    // is named after the first source file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      }
    
      void runOnOperation() override;
    };
    
    // Return true if the product of dimension values of a subsection of the tensor
    // is equal to the non-contracting dimension after a reshape
    bool BroadcastDimsProductEqual(Value input, Value output,
                                   size_t agg_start_idx) {
      ArrayRef<int64_t> input_shape =
          mlir::cast<ShapedType>(input.getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    				logger, volumeToDetach.VolumeName, volumeToDetach.VolumeSpec, volumeToDetach.NodeName)
    			if uncertainError != nil {
    				klog.Errorf("DetachVolume.MarkVolumeAsUncertain failed to add the volume %q to actual state after detach error: %s", volumeToDetach.VolumeName, uncertainError)
    			}
    			eventErr, detailedErr := volumeToDetach.GenerateError("DetachVolume.Detach failed", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    				nExtReloc++
    
    				// set up addend for eventual relocation via outer symbol.
    				rs := rs
    				rs, off := FoldSubSymbolOffset(ldr, rs)
    				xadd := r.Add() + off - int64(siz) // relative to address after the relocated chunk
    				rst := ldr.SymType(rs)
    				if rst != sym.SHOSTOBJ && rst != sym.SDYNIMPORT && ldr.SymSect(rs) == nil {
    					st.err.Errorf(s, "missing section for relocation target %s", ldr.SymName(rs))
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	vs.SetLen(5)
    	if len(xs) != 5 || cap(xs) != 8 {
    		t.Errorf("after SetLen(5), len, cap = %d, %d, want 5, 8", len(xs), cap(xs))
    	}
    	vs.SetCap(6)
    	if len(xs) != 5 || cap(xs) != 6 {
    		t.Errorf("after SetCap(6), len, cap = %d, %d, want 5, 6", len(xs), cap(xs))
    	}
    	vs.SetCap(5)
    	if len(xs) != 5 || cap(xs) != 5 {
    		t.Errorf("after SetCap(5), len, cap = %d, %d, want 5, 5", len(xs), cap(xs))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top