Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 154 for write1 (0.24 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // GetContainerLogs returns logs of a specific container.
    func (m *kubeGenericRuntimeManager) GetContainerLogs(ctx context.Context, pod *v1.Pod, containerID kubecontainer.ContainerID, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) (err error) {
    	resp, err := m.runtimeService.ContainerStatus(ctx, containerID.ID, false)
    	if err != nil {
    		klog.V(4).InfoS("Failed to get container status", "containerID", containerID.String(), "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

      //    visible to done(). This is because there is no happens before edge between the write and a
      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
      //    it would just add an edge such that if done() observed non-null, then it would also
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    		if err != nil {
    			panic(err)
    		}
    		ruleFile = w
    	}
    	_, err := fmt.Fprintln(ruleFile, s)
    	if err != nil {
    		panic(err)
    	}
    }
    
    var ruleFile io.Writer
    
    func min(x, y int64) int64 {
    	if x < y {
    		return x
    	}
    	return y
    }
    func max(x, y int64) int64 {
    	if x > y {
    		return x
    	}
    	return y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        This simple option dramatically changes the behavior of the request body and of the entire
        call.
    
        The `RequestBody.writeTo()` method may now retain a reference to the provided sink and
        hand it off to another thread to write to it after `writeTo` returns.
    
        The `EventListener` may now see requests and responses interleaved in ways not previously
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    		if *done > 0 {
    			race.WriteRange(unsafe.Pointer(&p[0]), int(*done))
    		}
    		race.Acquire(unsafe.Pointer(&ioSync))
    	}
    	if msan.Enabled && *done > 0 {
    		msan.Write(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	if asan.Enabled && *done > 0 {
    		asan.Write(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	return err
    }
    
    func WriteFile(fd Handle, p []byte, done *uint32, overlapped *Overlapped) error {
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	generatedFromIndex = "generated-from-index"
    )
    
    // The state is initialized in PreFilter phase. Because we save the pointer in
    // framework.CycleState, in the later phases we don't need to call Write method
    // to update the value
    type stateData struct {
    	// preScored is true if PreScore was invoked.
    	preScored bool
    
    	// A copy of all claims for the Pod (i.e. 1:1 match with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    //    (from _GCoff), enabling the write barrier, enabling mutator
    //    assists, and enqueueing root mark jobs. No objects may be
    //    scanned until all Ps have enabled the write barrier, which is
    //    accomplished using STW.
    //
    //    b. Start the world. From this point, GC work is done by mark
    //    workers started by the scheduler and by assists performed as
    //    part of allocation. The write barrier shades both the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	// not want to do the subtraction here. But we started out without
    	// any frame pointer, and when we wanted to add it, we didn't
    	// want to break all the assembly doing direct writes to 8(RSP)
    	// to set the first parameter to a called function.
    	// So we decided to write the FP link *below* the stack pointer
    	// (with R29 = RSP - 8 in Go functions).
    	// This is technically ABI-compatible but not standard.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      }) {cluster_attr = "cluster_attr"} : () -> tensor<*xi32>
    
      // CHECK: return %[[CLUSTER_RES]]
      return %0 : tensor<*xi32>
    }
    
    // -----
    
    // Tests that pass lifts resource reads/writes from a loop, and removed unused
    // resources.
    
    // CHECK-LABEL: func @cluster_with_loop
    func.func @cluster_with_loop() -> () {
      // CHECK: %[[COUNT:.*]] = "tf.Const"() <{value = dense<10> : tensor<i32>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  10. src/math/rand/v2/chacha8_test.go

    	}
    	h.Write(buf)
    	if got := h.Sum(nil); !bytes.Equal(got, chacha8hash) {
    		t.Errorf("transcript incorrect: got %x, want %x", got, chacha8hash)
    	}
    
    	p.Seed(chacha8seed)
    	h.Reset()
    
    	buf = make([]byte, chacha8outlen)
    	if _, err := io.ReadFull(iotest.OneByteReader(p), buf); err != nil {
    		t.Errorf("one byte reads: %v", err)
    	}
    	h.Write(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
Back to top