Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 772 for statusB (0.52 sec)

  1. tensorflow/compiler/jit/xla_tpu_device.cc

      ApiConverter::StackHelper<XLA_Shape> tpu_shape;
      StatusHelper status;
      stream_executor::tpu::ExecutorApiFn()->XlaShapeToTpuShapeRepresentationFn(
          &se_shape.value, type, use_fast_memory, &tpu_shape.value,
          status.c_status);
      if (!status.status().ok()) {
        return status.status();
      }
      return tpu_shape.AsCpp<xla::Shape>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaim_test.go

    		"add-reservation-and-allocation": {
    			oldClaim: validClaim,
    			update: func(claim *resource.ResourceClaim) *resource.ResourceClaim {
    				claim.Status = *validAllocatedClaim.Status.DeepCopy()
    				for i := 0; i < resource.ResourceClaimReservedForMaxSize; i++ {
    					claim.Status.ReservedFor = append(claim.Status.ReservedFor,
    						resource.ResourceClaimConsumerReference{
    							Resource: "pods",
    							Name:     fmt.Sprintf("foo-%d", i),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. src/os/exec_posix.go

    			res = "exit status " + itoa.Itoa(code) // unix
    		}
    	case status.Signaled():
    		res = "signal: " + status.Signal().String()
    	case status.Stopped():
    		res = "stop signal: " + status.StopSignal().String()
    		if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {
    			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
    		}
    	case status.Continued():
    		res = "continued"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvent.java

        @Nullable
        private final Long pid;
        @Nullable
        private final DaemonExpirationStatus status;
        @Nullable
        private final String reason;
    
        public DaemonStopEvent(Date timestamp, @Nullable Long pid, @Nullable DaemonExpirationStatus status, @Nullable String reason) {
            this.timestamp = timestamp;
            this.status = status;
            this.reason = reason;
            this.pid = pid;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    	requiresUpdate := false
    	if existingNode.Status.Capacity == nil {
    		if initialNode.Status.Capacity != nil {
    			existingNode.Status.Capacity = initialNode.Status.Capacity.DeepCopy()
    			requiresUpdate = true
    		} else {
    			existingNode.Status.Capacity = make(map[v1.ResourceName]resource.Quantity)
    		}
    	}
    
    	if existingNode.Status.Allocatable == nil {
    		if initialNode.Status.Allocatable != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    		}
    		if status := f.runFilterPlugin(ctx, pl, state, pod, nodeInfo); !status.IsSuccess() {
    			if !status.IsRejected() {
    				// Filter plugins are not supposed to return any status other than
    				// Success or Unschedulable.
    				status = framework.AsStatus(fmt.Errorf("running %q filter plugin: %w", pl.Name(), status.AsError()))
    			}
    			status.SetPlugin(pl.Name())
    			return status
    		}
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    // Plugin returns the plugin name which caused this status.
    func (s *Status) Plugin() string {
    	return s.plugin
    }
    
    // Reasons returns reasons of the Status.
    func (s *Status) Reasons() []string {
    	if s.err != nil {
    		return append([]string{s.err.Error()}, s.reasons...)
    	}
    	return s.reasons
    }
    
    // AppendReason appends given reason to the Status.
    func (s *Status) AppendReason(reason string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one.go

    					UnschedulablePlugins: sets.New(status.Plugin()),
    				},
    			}
    			return framework.NewStatus(status.Code()).WithError(fitErr)
    		}
    		return status
    	}
    
    	// Run "prebind" plugins.
    	if status := fwk.RunPreBindPlugins(ctx, state, assumedPod, scheduleResult.SuggestedHost); !status.IsSuccess() {
    		if status.IsRejected() {
    			fitErr := &framework.FitError{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.h"
    
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/string_view.h"
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      // resulted graph.
      Status status = ConvertMlirToGraph(*module_ref, export_config, graph,
                                         flib_def, &control_ret_nodes);
      if (!status.ok()) {
        errors::AppendToMessage(&status,
                                "Error converting MLIR module back to graph");
        return status;
      }
    
      timings.ReportAndStop();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top