Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 341 for statusB (0.18 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    		// If container is not in the created state, we have tried and
    		// started the container. Set the StartedAt time.
    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    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. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	return newRuntimeVersion(typedVersion.RuntimeApiVersion)
    }
    
    // Status returns the status of the runtime. An error is returned if the Status
    // function itself fails, nil otherwise.
    func (m *kubeGenericRuntimeManager) Status(ctx context.Context) (*kubecontainer.RuntimeStatus, error) {
    	resp, err := m.runtimeService.Status(ctx, false)
    	if err != nil {
    		return nil, err
    	}
    	if resp.GetStatus() == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    				// no ready sandbox
    				status.SandboxStatuses[0].State = runtimeapi.PodSandboxState_SANDBOX_NOTREADY
    				status.SandboxStatuses[0].Metadata.Attempt = uint32(1)
    				// all containers exited
    				for i := range status.ContainerStatuses {
    					status.ContainerStatuses[i].State = kubecontainer.ContainerStateExited
    					status.ContainerStatuses[i].ExitCode = 0
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                String status
    
                @Inject
                MP(String status) { this.status = status }
    
                void execute(ComponentMetadataSupplierDetails details) {
                    if (details.id.version == "2.2") {
                        details.result.status = status
                    } else {
                        details.result.status = "release"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    		_, known := classInfos[gwc.ControllerName]
    		if !known {
    			continue
    		}
    		res[obj.Name] = gwc.ControllerName
    
    		// Set status. If we created it, it may already be there. If not, set it again
    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      if (!status.ok()) GTEST_SKIP() << "Append() not supported: " << status;
      status = new_file->Flush();
      if (!status.ok()) GTEST_SKIP() << "Flush() not supported: " << status;
      status = new_file->Close();
      if (!status.ok()) GTEST_SKIP() << "Close() not supported: " << status;
    
      std::unique_ptr<ReadOnlyMemoryRegion> region;
      status = env_->NewReadOnlyMemoryRegionFromFile(filepath, &region);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_test.cc

        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_OpAddInput(matmul, m, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_OpAddInput(matmul, m, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_Execute(matmul, &retvals[0], &num_retvals, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///   * Might use any other error value for `status` to signal other errors.
      void (*create_dir)(const TF_Filesystem* filesystem, const char* path,
                         TF_Status* status);
    
      /// Creates the directory specified by `path` and all needed ancestors.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if directory was created.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  9. tensorflow/c/kernels_test.cc

        EXPECT_EQ(TF_OK, TF_GetCode(status));
    
        TF_SetStatus(status, TF_OK, "");
        EXPECT_EQ(false, TF_IsHostMemoryOutput(ctx, 1, status));
        EXPECT_EQ(TF_OK, TF_GetCode(status));
    
        TF_SetStatus(status, TF_OK, "");
        TF_IsHostMemoryInput(ctx, -1, status);
        EXPECT_EQ(TF_OUT_OF_RANGE, TF_GetCode(status));
    
        TF_SetStatus(status, TF_OK, "");
        TF_IsHostMemoryInput(ctx, 2, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	client := fake.NewSimpleClientset(pod)
    	m := newTestManager(client)
    
    	status := v1.PodStatus{Message: "initial status"}
    	m.SetPodStatus(pod, status)
    	status.Message = "first version bump"
    	m.SetPodStatus(pod, status)
    	status.Message = "second version bump"
    	m.SetPodStatus(pod, status)
    
    	t.Logf("sync batch before syncPods pushes latest status, resulting in one update during the batch")
    	m.syncBatch(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top