Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 341 for statusB (0.22 sec)

  1. src/internal/trace/order.go

    	mid := ThreadID(ev.args[1])
    	status := go122.GoStatus(ev.args[2])
    
    	if int(status) >= len(go122GoStatus2GoState) {
    		return curCtx, false, fmt.Errorf("invalid status for goroutine %d: %d", gid, status)
    	}
    	oldState := go122GoStatus2GoState[status]
    	if s, ok := o.gStates[gid]; ok {
    		if s.status != status {
    			return curCtx, false, fmt.Errorf("inconsistent status for goroutine %d: old %v vs. new %v", gid, s.status, status)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

                      api_def_overwrites.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    
      string op_name = "TestCApi";
      status = TF_NewStatus();
      auto* api_def_buf =
          TF_ApiDefMapGet(api_def_map, op_name.c_str(), op_name.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    
      tensorflow::ApiDef api_def;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2.json

                    {
                      "responseKind": {
                        "group": "",
                        "kind": "APIService",
                        "version": ""
                      },
                      "subresource": "status",
                      "verbs": [
                        "get",
                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/controller/history/controller_history_test.go

    	ss1 := newStatefulSet(3, "ss1", types.UID("ss1"), map[string]string{"foo": "bar"})
    	ss1.Status.CollisionCount = new(int32)
    	ss2 := newStatefulSet(3, "ss2", types.UID("ss2"), map[string]string{"goo": "car"})
    	ss2.Status.CollisionCount = new(int32)
    	ss1Rev1, err := NewControllerRevision(ss1, parentKind, ss1.Spec.Template.Labels, rawTemplate(&ss1.Spec.Template), 1, ss1.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			Type:               v1.NodeReady,
    			Status:             v1.ConditionUnknown,
    			LastHeartbeatTime:  node.CreationTimestamp,
    			LastTransitionTime: node.CreationTimestamp,
    		}
    		gracePeriod = nc.nodeStartupGracePeriod
    		if nodeHealth != nil {
    			nodeHealth.status = &node.Status
    		} else {
    			nodeHealth = &nodeHealthData{
    				status:                   &node.Status,
    				probeTimestamp:           node.CreationTimestamp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    					now := metav1.NewTime(jm.clock.Now())
    					job.Status.StartTime = &now
    				}
    			}
    		}
    	}
    
    	needsStatusUpdate := suspendCondChanged || active != job.Status.Active || !ptr.Equal(ready, job.Status.Ready)
    	needsStatusUpdate = needsStatusUpdate || !ptr.Equal(job.Status.Terminating, jobCtx.terminating)
    	job.Status.Active = active
    	job.Status.Ready = ready
    	job.Status.Terminating = jobCtx.terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    					Name:        testKubeletHostname,
    					Annotations: testCase.existingAnnotations,
    				},
    				Spec: v1.NodeSpec{},
    				Status: v1.NodeStatus{
    					Addresses: []v1.NodeAddress{},
    				},
    			}
    
    			if testCase.shouldSetNodeAddressBeforeTest {
    				existingNode.Status.Addresses = append(existingNode.Status.Addresses, existingNodeAddress)
    			}
    
    			nodeIPValidator := func(nodeIP net.IP) error {
    				return nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

          /*legacy_float_scale=*/true, blocked_ops, blocked_nodes,
          /*enable_variable_quantization=*/false,
          /*disable_per_channel_for_dense_layers=*/
          disable_per_channel_for_dense_layers);
      if (status != kTfLiteOk) {
        return status;
      }
    
      auto flatbuffer_model = FlatBufferModel::BuildFromBuffer(
          output_buffer.data(), output_buffer.size());
      *model = UnPackFlatBufferModel(*flatbuffer_model->GetModel());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    	}
    	cfg.Annotations[status.WorkloadEntryHealthCheckAnnotation] = "true"
    	if healthy {
    		return status.UpdateConfigCondition(cfg, &v1alpha1.IstioCondition{
    			Type:   status.ConditionHealthy,
    			Status: status.StatusTrue,
    		})
    	}
    	return status.UpdateConfigCondition(cfg, &v1alpha1.IstioCondition{
    		Type:   status.ConditionHealthy,
    		Status: status.StatusFalse,
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    // not present.
    func setCondition(hpa *autoscalingv2.HorizontalPodAutoscaler, conditionType autoscalingv2.HorizontalPodAutoscalerConditionType, status v1.ConditionStatus, reason, message string, args ...interface{}) {
    	hpa.Status.Conditions = setConditionInList(hpa.Status.Conditions, conditionType, status, reason, message, args...)
    }
    
    // setConditionInList sets the specific condition type on the given HPA to the specified value with the given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top