Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 117 for addpool (0.12 sec)

  1. tensorflow/cc/gradients/nn_grad_test.cc

      TensorShape y_shape({1, 1, 1, 1});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      // Setup window and strides so that we only do one AvgPool.
      const std::vector<int> ksize{1, 2, 2, 1};
      const std::vector<int> strides{1, 2, 2, 1};
      auto y = AvgPool(scope_, x, ksize, strides, "SAME");
      RunTest(x, x_shape, y, y_shape);
    }
    
    TEST_F(NNGradTest, AvgPool3DGradHelper) {
      TensorShape x_shape({1, 3, 3, 3, 1});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/cache.go

    // Assumes that lock is already acquired.
    func (cache *cacheImpl) addPod(logger klog.Logger, pod *v1.Pod, assumePod bool) error {
    	key, err := framework.GetPodKey(pod)
    	if err != nil {
    		return err
    	}
    	n, ok := cache.nodes[pod.Spec.NodeName]
    	if !ok {
    		n = newNodeInfoListItem(framework.NewNodeInfo())
    		cache.nodes[pod.Spec.NodeName] = n
    	}
    	n.info.AddPod(pod)
    	cache.moveNodeInfoToHead(logger, pod.Spec.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_386.s

    	// DX:AX = *addr
    	MOVL	0(BP), AX
    	MOVL	4(BP), DX
    addloop:
    	// CX:BX = DX:AX (*addr) + DI:SI (delta)
    	MOVL	AX, BX
    	MOVL	DX, CX
    	ADDL	SI, BX
    	ADCL	DI, CX
    
    	// if *addr == DX:AX {
    	//	*addr = CX:BX
    	// } else {
    	//	DX:AX = *addr
    	// }
    	// all in one instruction
    	LOCK
    	CMPXCHG8B	0(BP)
    
    	JNZ	addloop
    
    	// success
    	// return CX:BX
    	MOVL	BX, ret_lo+12(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	node2 := &user.DefaultInfo{Name: "system:node:node2", Groups: []string{"system:nodes"}}
    	node3 := &user.DefaultInfo{Name: "system:node:node3", Groups: []string{"system:nodes"}}
    
    	g.AddPod(&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "pod1-node1", Namespace: "ns1"},
    		Spec: corev1.PodSpec{
    			NodeName: "node1",
    			Volumes: []corev1.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_extender.go

    	var potentialVictims []*v1.Pod
    
    	removePod := func(rp *v1.Pod) error {
    		return nodeInfoCopy.RemovePod(logger, rp)
    	}
    	addPod := func(ap *v1.Pod) {
    		nodeInfoCopy.AddPod(ap)
    	}
    	// As the first step, remove all the lower priority pods from the node and
    	// check if the given pod can be scheduled.
    	podPriority := corev1helpers.PodPriority(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    			RBD: &v1.RBDVolumeSource{
    				CephMonitors: []string{"a", "b"},
    				RBDPool:      "foo",
    				RBDImage:     "bar",
    				FSType:       "ext4",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			RBD: &v1.RBDVolumeSource{
    				CephMonitors: []string{"c", "d"},
    				RBDPool:      "foo",
    				RBDImage:     "bar",
    				FSType:       "ext4",
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/scale_test.go

    							Running: &v1.ContainerStateRunning{
    								StartedAt: metav1.Now(),
    							},
    						},
    						Started: utilpointer.Bool(true),
    					})
    				}
    				podManager.AddPod(&pod)
    				m.statusManager.SetPodStatus(&pod, pod.Status)
    				m.AddPod(&pod)
    			}
    			t.Logf("Adding %d pods with %d containers each in %v", numTestPods, numContainers, time.Since(now))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. src/crypto/tls/boring_test.go

    				shouldVerifyFIPS := false
    				addRoot := func(cond int, c *boringCertificate) {
    					if cond != 0 {
    						rootName += "," + c.name
    						pool.AddCert(c.cert)
    						if reachable[c.org] {
    							shouldVerify = true
    						}
    						if reachableFIPS[c.org] && c.fipsOK {
    							shouldVerifyFIPS = true
    						}
    					}
    				}
    				addRoot(r&1, R1)
    				addRoot(r&2, R2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    type DesiredStateOfWorld interface {
    	// AddNode adds the given node to the list of nodes managed by the attach/
    	// detach controller.
    	// If the node already exists this is a no-op.
    	AddNode(nodeName k8stypes.NodeName)
    
    	// AddPod adds the given pod to the list of pods that reference the
    	// specified volume and is scheduled to the specified node.
    	// A unique volumeName is generated from the volumeSpec and returned on
    	// success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/common_test.go

    	podManager := kubepod.NewBasicPodManager()
    	podStartupLatencyTracker := kubeletutil.NewPodStartupLatencyTracker()
    	// Add test pod to pod manager, so that status manager can get the pod from pod manager if needed.
    	podManager.AddPod(getTestPod())
    	testRootDir := ""
    	if tempDir, err := os.MkdirTemp("", "kubelet_test."); err != nil {
    		return nil
    	} else {
    		testRootDir = tempDir
    	}
    	m := NewManager(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top