Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 336 for statusB (0.39 sec)

  1. cmd/http-stats.go

    		return 0
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    	val, ok := stats.apiStats[api]
    	if ok {
    		return val
    	}
    
    	return 0
    }
    
    // Load returns the recorded stats.
    func (stats *HTTPAPIStats) Load(toLower bool) map[string]int {
    	if stats == nil {
    		return map[string]int{}
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    	EvProcStart   // start of P [timestamp, P ID, P seq]
    	EvProcStop    // stop of P [timestamp]
    	EvProcSteal   // P was stolen [timestamp, P ID, P seq, M ID]
    	EvProcStatus  // P status at the start of a generation [timestamp, P ID, status]
    
    	// Goroutines.
    	EvGoCreate            // goroutine creation [timestamp, new goroutine ID, new stack ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tests/integration/pilot/gateway_test.go

    		gw, _ := client.Get(context.Background(), "managed-owner", metav1.GetOptions{})
    		if gw == nil {
    			return fmt.Errorf("failed to find gateway")
    		}
    		cond := kstatus.GetCondition(gw.Status.Conditions, string(k8sv1.GatewayConditionProgrammed))
    		if cond.Status != metav1.ConditionTrue {
    			return fmt.Errorf("failed to find programmed condition: %+v", cond)
    		}
    		if cond.ObservedGeneration != gw.Generation {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    		input    *runtimeapi.ContainerStatus
    		expected *kubecontainer.Status
    	}{
    		"created container": {
    			input: &runtimeapi.ContainerStatus{
    				Id:        cid.ID,
    				Metadata:  meta,
    				Image:     imageSpec,
    				State:     runtimeapi.ContainerState_CONTAINER_CREATED,
    				CreatedAt: createdAt,
    			},
    			expected: &kubecontainer.Status{
    				ID:        *cid,
    				Image:     imageSpec.Image,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. tests/integration/ambient/waypoint_test.go

    				if gwc == nil {
    					return fmt.Errorf("failed to find GatewayClass %v", constants.WaypointGatewayClassName)
    				}
    				cond := kstatus.GetCondition(gwc.Status.Conditions, string(k8s.GatewayClassConditionStatusAccepted))
    				if cond.Status != metav1.ConditionTrue {
    					return fmt.Errorf("failed to find accepted condition: %+v", cond)
    				}
    				if cond.ObservedGeneration != gwc.Generation {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{},
    	}
    
    	for _, tc := range []struct {
    		name      string
    		scalingFg bool
    		limits    v1.ResourceList
    		requests  v1.ResourceList
    		cStatus   []v1.ContainerStatus
    		expected  *runtimeapi.LinuxContainerResources
    	}{
    		{
    			"requests & limits, cpu & memory, guaranteed qos - no container status",
    			true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    For example, `latest.integration` will select the highest module version regardless of its status (because `integration` is the least mature status as explained below), whereas `latest.release` will select the highest module version with status `release`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. istioctl/pkg/waypoint/waypoint.go

    			}
    			for _, gw := range filteredGws {
    				programmed := kstatus.StatusFalse
    				rev := gw.Labels[label.IoIstioRev.Name]
    				if rev == "" {
    					rev = "default"
    				}
    				for _, cond := range gw.Status.Conditions {
    					if cond.Type == string(gateway.GatewayConditionProgrammed) {
    						programmed = string(cond.Status)
    					}
    				}
    				if allNamespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    			running  int
    			firstErr error
    		}
    		statusc := make(chan goroutineStatus, 1)
    		statusc <- goroutineStatus{running: len(c.goroutine)}
    		for _, fn := range c.goroutine {
    			go func(fn func() error) {
    				err := fn()
    
    				status := <-statusc
    				if status.firstErr == nil {
    					status.firstErr = err
    				}
    				status.running--
    				if status.running == 0 {
    					goroutineErr <- status.firstErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

        TF_SetStatus(status, TF_OK, "");
        test_util::PopulateDefaultPlatformRegistrationParams(params);
        params->platform->name = "INVALID:NAME";
      };
    
      std::string device_type, platform_name;
      absl::Status status =
          InitStreamExecutorPlugin(plugin_init, &device_type, &platform_name);
      ASSERT_EQ(status.code(), tensorflow::error::FAILED_PRECONDITION);
      EXPECT_THAT(
          status.message(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top