Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 772 for statusB (0.13 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

        }
        absl::Status status = ValidateSPAllocatorStats(c_stats);
        if (!status.ok()) {
          LOG(ERROR) << status.message();
          return absl::nullopt;
        }
        ::stream_executor::AllocatorStats stats;
        stats.num_allocs = c_stats.num_allocs;
        stats.bytes_in_use = c_stats.bytes_in_use;
        stats.peak_bytes_in_use = c_stats.peak_bytes_in_use;
        stats.largest_alloc_size = c_stats.largest_alloc_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

        //    out the same buffers until the transfer has completed.
        status = host_to_device_stream_->DoHostCallback([ref]() { ref.Unref(); });
        done(status);
      } else {
        status = host_to_device_stream_->DoHostCallback([ref, done]() {
          ref.Unref();
          done(absl::OkStatus());
        });
        if (!status.ok()) {
          done(status);
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_host_send_device_context.cc

        StatusCallback done, bool sync_dst_compute) const {
      auto status = stream_->Memcpy(device_memory_base_, cpu_tensor->data(),
                                    device_memory_base_->size());
      if (!status.ok()) {
        done(status);
        return;
      }
      status = stream_->RecordEvent(done_event_.get().get());
      if (!status.ok()) {
        done(status);
        return;
      }
      if (auto st = stream_->BlockHostUntilDone(); !st.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types.go

    	// IfHealthyBudget policy means that running pods (status.phase="Running"),
    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	IfHealthyBudget UnhealthyPodEvictionPolicyType = "IfHealthyBudget"
    
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/os/exec_plan9.go

    	pid    int              // The process's id.
    	status *syscall.Waitmsg // System-dependent status info.
    }
    
    // Pid returns the process id of the exited process.
    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    func (p *ProcessState) success() bool {
    	return p.status.ExitStatus() == 0
    }
    
    func (p *ProcessState) sys() any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation.go

    	}
    
    	// Updates to a populated resourceClaim.Status.Allocation are not allowed
    	if oldClaim.Status.Allocation != nil && resourceClaim.Status.Allocation != nil {
    		allErrs = append(allErrs, apimachineryvalidation.ValidateImmutableField(resourceClaim.Status.Allocation, oldClaim.Status.Allocation, fldPath.Child("allocation"))...)
    	}
    
    	if !oldClaim.Status.DeallocationRequested &&
    		resourceClaim.Status.DeallocationRequested &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. cni/pkg/util/podutil.go

    func GetPodIPsIfPresent(pod *corev1.Pod) []netip.Addr {
    	var podIPs []netip.Addr
    	if len(pod.Status.PodIPs) != 0 {
    		for _, pip := range pod.Status.PodIPs {
    			ip := netip.MustParseAddr(pip.IP)
    			podIPs = append(podIPs, ip)
    		}
    	} else if len(pod.Status.PodIP) != 0 {
    		ip := netip.MustParseAddr(pod.Status.PodIP)
    		podIPs = append(podIPs, ip)
    	}
    	return podIPs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.cc

      }
      return absl::OkStatus();
    }
    
    Status XlaDevice::RefreshStatus() {
      std::shared_ptr<se::Stream> stream;
      {
        mutex_lock lock(mu_);
        stream = stream_;
      }
      if (!stream) {
        return absl::OkStatus();
      }
      Status status = stream->RefreshStatus();
      if (!status.ok()) {
        // Ignore errors from HandleDeviceError, since by definition the status is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

            public ProgressLogger start(String description, String status) {
                setDescription(description);
                started(status);
                return this;
            }
    
            @Override
            public void started() {
                started(null);
            }
    
            @Override
            public void started(String status) {
                started(status, totalProgress);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      }
    
      if (absl::Status status = AddCalibrationStatistics(
              *module_ref, calibration_data_dir,
              quantization_options.calibration_options(), py_function_library);
          !status.ok()) {
        LOG(WARNING) << "Some CustomAggregator ops do not have min or max "
                        "values. Parts of the graph are not quantized. "
                     << status;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top