Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 123 for UInt32 (0.32 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    		if updated == nil {
    			t.Fatalf("Failed to get updated status")
    		}
    		if got, want := updated.Status.DesiredNumberScheduled, int32(podControl.FakePodControl.CreateLimit)*10; got != want {
    			t.Errorf("Status.DesiredNumberScheduled = %v, want %v", got, want)
    		}
    		if got, want := updated.Status.CurrentNumberScheduled, int32(podControl.FakePodControl.CreateLimit); got != want {
    			t.Errorf("Status.CurrentNumberScheduled = %v, want %v", got, want)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "code": {
                "description": "Suggested HTTP return code for this status, 0 if not set.",
                "format": "int32",
                "type": "integer"
              },
              "details": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		# TYPE scheduler_queue_incoming_pods_total counter
    	`
    
    var (
    	NodeAllEvent = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.All}
    
    	lowPriority, midPriority, highPriority = int32(0), int32(100), int32(1000)
    	mediumPriority                         = (lowPriority + highPriority) / 2
    
    	highPriorityPodInfo = mustNewPodInfo(
    		st.MakePod().Name("hpp").Namespace("ns1").UID("hppns1").Priority(highPriority).Obj(),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        Reverses specific dimensions of a tensor.
    
        Given a tensor, and a int32/int64 tensor axis representing the set
        of dimensions of tensor to reverse.
        This operation reverses each dimension i for
        which there exists j s.t. axis[j] == i.
    
        Args:
          tensor: A Tensor. Must be one of the following types:
          uint8, int8, int16, int32, int64, float32, bool Up to 8-D.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "leaseTransitions": {
                "description": "leaseTransitions is the number of transitions of a lease between holders.",
                "format": "int32",
                "type": "integer"
              },
              "renewTime": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "type": "string"
              },
              "deprecatedCount": {
                "description": "deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.",
                "format": "int32",
                "type": "integer"
              },
              "deprecatedFirstTimestamp": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	kernelMemcgNotification bool,
    	experimentalNodeAllocatableIgnoreEvictionThreshold bool,
    	minimumGCAge metav1.Duration,
    	maxPerPodContainerCount int32,
    	maxContainerCount int32,
    	registerSchedulable bool,
    	nodeLabels map[string]string,
    	nodeStatusMaxImages int32,
    	seccompDefault bool,
    ) (*Kubelet, error) {
    	ctx := context.Background()
    	logger := klog.TODO()
    
    	if rootDirectory == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			pod: st.MakePod().Name("p").Label("foo", "").SpreadConstraint(
    				2,
    				"node",
    				v1.DoNotSchedule,
    				fooSelector,
    				ptr.To[int32](4), // larger than the number of domains(3)
    				nil,
    				nil,
    				nil,
    			).Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("node", "node-a").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "description": "value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.",
                "format": "int32",
                "type": "integer"
              }
            },
            "required": [
              "value"
            ],
            "type": "object",
            "x-kubernetes-group-version-kind": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		return testServerTimeoutsWithTimeout(t, timeout, mode)
    	})
    }
    
    func testServerTimeoutsWithTimeout(t *testing.T, timeout time.Duration, mode testMode) error {
    	var reqNum atomic.Int32
    	cst := newClientServerTest(t, mode, HandlerFunc(func(res ResponseWriter, req *Request) {
    		fmt.Fprintf(res, "req=%d", reqNum.Add(1))
    	}), func(ts *httptest.Server) {
    		ts.Config.ReadTimeout = timeout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top