Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for nodeX (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    						Reason:  metav1.StatusReasonTimeout,
    						Code:    504,
    					},
    				},
    			}, true)
    
    			go func(t *testing.T) {
    				err := cacher.watchCache.Add(makeTestPodDetails("pod1", 105, "node1", map[string]string{"label": "value1"}))
    				require.NoError(t, err, "failed adding a pod to the watchCache")
    			}(t)
    			w, err = cacher.Watch(context.Background(), "pods/ns", scenario.opts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		},
    	}
    }
    
    func TestValidateReservedMemory(t *testing.T) {
    	machineInfo := &cadvisorapi.MachineInfo{
    		Topology: []cadvisorapi.Node{
    			{Id: 0},
    			{Id: 1},
    		},
    	}
    	const msgNotEqual = "the total amount %q of type %q is not equal to the value %q determined by Node Allocatable feature"
    	testCases := []struct {
    		description                string
    		nodeAllocatableReservation v1.ResourceList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    	if bucketName == "" {
    		return nil, grid.NewRemoteErrString("Bucket name is missing")
    	}
    
    	bs := BucketStats{
    		ReplicationStats: globalReplicationStats.Get(bucketName),
    		QueueStats:       ReplicationQueueStats{Nodes: []ReplQNodeStats{globalReplicationStats.getNodeQueueStats(bucketName)}},
    		ProxyStats:       globalReplicationStats.getProxyStats(bucketName),
    	}
    	return &bs, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			[]string{"_html_template_rcdataescaper"},
    		},
    	}
    	for i, test := range tests {
    		tmpl := template.Must(template.New("test").Parse(test.input))
    		action, ok := (tmpl.Tree.Root.Nodes[0].(*parse.ActionNode))
    		if !ok {
    			t.Errorf("First node is not an action: %s", test.input)
    			continue
    		}
    		pipe := action.Pipe
    		originalIDs := make([]string, len(test.ids))
    		copy(originalIDs, test.ids)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-allowlist=quantize_float_placeholder_only,not_reset_input" | FileCheck %s
    // RUN: tf-opt %s -tfl-prepare-quantize="disable-set-input-nodes-quantization-params=true" | FileCheck --check-prefix=MixedPrecision %s
    // RUN: tf-opt %s -tfl-prepare-quantize="is-qdq-conversion=true" | FileCheck --check-prefix=QDQ %s
    
    // CHECK-LABEL: main
    // Uses `main` function to match the default target function of QuantSpecs and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    				prefs := desired.remove(v.ID)
    				if v.Op == OpPhi {
    					// TODO: if v is a phi, save desired register for phi inputs.
    					// For now, we just drop it and don't propagate
    					// desired registers back though phi nodes.
    					continue
    				}
    				regspec := s.regspec(v)
    				// Cancel desired registers if they get clobbered.
    				desired.clobber(regspec.clobbers)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top