Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Statuses (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Larger builds with hundreds of subprojects, configuration, and source code may benefit from a larger heap size.
    
    [[sec:status]]
    == Check Daemon status
    
    To get a list of running Daemons and their statuses, use the `--status` command:
    
    ----
    $ gradle --status
    ----
    
    ----
       PID STATUS   INFO
     28486 IDLE     7.5
     34247 BUSY     7.5
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/api/testing/unstructured_test.go

    	}
    	seed := rand.Int63()
    	fuzzer.FuzzerFor(FuzzerFuncs, rand.NewSource(seed), legacyscheme.Codecs).
    		// We are explicitly overwriting custom fuzzing functions, to ensure
    		// that InitContainers and their statuses are not generated. This is
    		// because in this test we are simply doing json operations, in which
    		// those disappear.
    		Funcs(
    			func(s *api.PodSpec, c fuzz.Continue) {
    				c.FuzzNoCustom(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    	return wrapper
    }
    
    // ResourceClaims sets that field of the inner object.
    func (wrapper *PodSchedulingWrapper) ResourceClaims(statuses ...resourcev1alpha2.ResourceClaimSchedulingStatus) *PodSchedulingWrapper {
    	wrapper.Status.ResourceClaims = statuses
    	return wrapper
    }
    
    type ResourceSliceWrapper struct {
    	resourcev1alpha2.ResourceSlice
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller_test.go

    					actualStatuses = make(map[string][]v1.PodResourceClaimStatus)
    				}
    				actualStatuses[pod.Name] = pod.Status.ResourceClaimStatuses
    			}
    			assert.Equal(t, tc.expectedStatuses, actualStatuses, "pod resource claim statuses")
    
    			scheduling, err := fakeKubeClient.ResourceV1alpha2().PodSchedulingContexts("").List(ctx, metav1.ListOptions{})
    			if err != nil {
    				t.Fatalf("unexpected error while listing claims: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    		}
    	}
    	return lowerPriorityPods
    }
    
    // DryRunPreemption simulates Preemption logic on <potentialNodes> in parallel,
    // returns preemption candidates and a map indicating filtered nodes statuses.
    // The number of candidates depends on the constraints defined in the plugin's args. In the returned list of
    // candidates, ones that do not violate PDB are preferred over ones that do.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    					Statuses: []core.HealthStatus{
    						core.HealthStatus_HEALTHY,
    						core.HealthStatus_DRAINING, core.HealthStatus_UNKNOWN, core.HealthStatus_DEGRADED,
    					},
    				}
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type ResourceScope string
    
    const (
    	ClusterScoped   ResourceScope = "Cluster"
    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    	// if they're rejected in PreFilter (via PreFilterResult) or Filter plugins.
    	// Nodes that pass PreFilter/Filter plugins are not included in this map.
    	// While this map may contain UnschedulableAndUnresolvable statuses, the absence of
    	// a node should be interpreted as UnschedulableAndUnresolvable.
    	NodeToStatusMap NodeToStatusMap
    	// UnschedulablePlugins are plugins that returns Unschedulable or UnschedulableAndUnresolvable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    using ::tensorflow::calibrator::CalibrationStatisticsMap;
    using ::testing::Contains;
    using ::testing::ElementsAre;
    using ::testing::HasSubstr;
    using ::testing::Key;
    using ::testing::SizeIs;
    using ::tsl::testing::StatusIs;
    
    class CalibrationStatisticsSaverTest : public OpsTestBase {};
    
    TEST_F(CalibrationStatisticsSaverTest, MissingOutputPath) {
      std::vector<std::string> ids{"1"};
      std::vector<int32_t> calibration_methods{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top