Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for message2 (0.2 sec)

  1. pkg/printers/internalversion/printers_test.go

    	firstRow := rows[0]
    	message1 := firstRow.Cells[4]
    	if message1.(string) != "Item 1" {
    		t.Errorf("Wrong event ordering: expecting (Item 1), got (%s)", message1)
    	}
    	secondRow := rows[1]
    	message2 := secondRow.Cells[4]
    	if message2 != "Item 2" {
    		t.Errorf("Wrong event ordering: expecting (Item 2), got (%s)", message2)
    	}
    	thirdRow := rows[2]
    	message3 := thirdRow.Cells[4]
    	if message3 != "Item 3" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    					Reason:  batch.JobReasonPodFailurePolicy,
    					Message: "Container main-container for pod default/mypod-0 failed with exit code 5 matching FailJob rule at index 1",
    				},
    			},
    			wantStatusActive:    0,
    			wantStatusFailed:    1,
    			wantStatusSucceeded: 0,
    		},
    		"job marked already as failure target with failed pod, message based on already deleted pod": {
    			enableJobPodFailurePolicy: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	for _, s := range statuses {
    		assert.Equal(t, expectedState[s.Name], s.State, "%s: state", message)
    		assert.Equal(t, expectedLastTerminationState[s.Name], s.LastTerminationState, "%s: last terminated state", message)
    	}
    }
    
    // Test generateAPIPodStatus with different reason cache and old api pod status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    // and updates the pod to the failed phase in the status manager.
    func (kl *Kubelet) rejectPod(pod *v1.Pod, reason, message string) {
    	kl.recorder.Eventf(pod, v1.EventTypeWarning, reason, message)
    	kl.statusManager.SetPodStatus(pod, v1.PodStatus{
    		Phase:   v1.PodFailed,
    		Reason:  reason,
    		Message: "Pod was rejected: " + message})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		Status:  v1.ConditionFalse,
    		Reason:  v1.PodReasonUnschedulable,
    		Message: "fake scheduling failure",
    	})
    
    	// Update pod condition to midPod.
    	podutil.UpdatePodCondition(&midPod.Status, &v1.PodCondition{
    		Type:    v1.PodScheduled,
    		Status:  v1.ConditionFalse,
    		Reason:  v1.PodReasonUnschedulable,
    		Message: "fake scheduling failure",
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    					Namespace: minioNamespace,
    					Subsystem: auditSubsystem,
    					Name:      "target_queue_length",
    					Help:      "Number of unsent messages in queue for target",
    					Type:      gaugeMetric,
    				},
    				VariableLabels: map[string]string{"target_id": id},
    				Value:          float64(st.QueueLength),
    			})
    			metrics = append(metrics, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	// check the 'alredy exists' msg was edited
    	msg := &err.(*errors.StatusError).ErrStatus.Message
    	if !strings.Contains(*msg, "object is being deleted:") {
    		t.Errorf("Unexpected error without the 'object is being deleted:' in message: %v", err)
    	}
    }
    
    // sequentialNameGenerator generates names by appending a monotonically-increasing integer to the base.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    // C compiler. This is needed to disable escape codes in clang error
    // messages that confuse tools like cgo.
    func (b *Builder) cCompilerEnv() []string {
    	return []string{"TERM=dumb"}
    }
    
    // mkAbs returns an absolute path corresponding to
    // evaluating f in the directory dir.
    // We always pass absolute paths of source files so that
    // the error messages will include the full path to a file
    // in need of attention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

                %read1, %read1_control = tf_executor.island wraps "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource<tensor<32xf32>>>) -> tensor<32xf32>
                %print, %print_control = tf_executor.island wraps "tf.Print"(%read1) { message = "read1 value" } : (tensor<32xf32>) -> (tensor<32xf32>)
                tf_executor.fetch %read1#0 : tensor<32xf32>
              }
              func.return %graph : tensor<32xf32>
            }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::map<std::string, std::set<std::string>> failed_custom_ops_;
    
      // Ops to provide warning messages.
      std::map<std::string, std::set<std::string>> custom_ops_;
      std::map<std::string, std::set<std::string>> flex_ops_;
    
      // Resource ops to provide warning messages.
      std::map<std::string, std::set<std::string>> resource_ops_;
    
      // Set of saved model tags, if any.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top