Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for addpool (0.23 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    			ctxt.Diag("zero-width instruction\n%v", p)
    			continue
    		}
    
    		switch o.flag & (LFROM | LTO | LPOOL) {
    		case LFROM:
    			c.addpool(p, &p.From)
    
    		case LTO:
    			c.addpool(p, &p.To)
    
    		case LPOOL:
    			if p.Scond&C_SCOND == C_SCOND_NONE {
    				c.flushpool(p, 0, 0)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    				continue
    			default:
    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    		}
    		pc += int64(m)
    
    		if o.flag&LFROM != 0 {
    			c.addpool(p, &p.From)
    		}
    		if o.flag&LTO != 0 {
    			c.addpool(p, &p.To)
    		}
    		if c.blitrl != nil {
    			c.checkpool(p)
    		}
    	}
    
    	c.cursym.Size = pc
    
    	/*
    	 * if any procedure is large enough to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    				return true
    			}
    		}
    
    		if volume.RBD != nil && existingVolume.RBD != nil {
    			mon, pool, image := volume.RBD.CephMonitors, volume.RBD.RBDPool, volume.RBD.RBDImage
    			emon, epool, eimage := existingVolume.RBD.CephMonitors, existingVolume.RBD.RBDPool, existingVolume.RBD.RBDImage
    			// two RBDs images are the same if they share the same Ceph monitor, are in the same RADOS Pool, and have the same image name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	dsw.AddNode(nodeName1)
    	dsw.AddNode(nodeName2)
    
    	generatedVolumeName, podAddErr := dsw.AddPod(types.UniquePodName(podName1), controllervolumetesting.NewPod(podName1, podName1), volumeSpec, nodeName1)
    	if podAddErr != nil {
    		t.Fatalf("AddPod failed. Expected: <no error> Actual: <%v>", podAddErr)
    	}
    
    	_, podAddErr = dsw.AddPod(types.UniquePodName(podName2), controllervolumetesting.NewPod(podName2, podName2), volumeSpec, nodeName2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s := newAmbientTestServer(t, testC, testNW)
    
    	s.addPods(t, "127.0.0.1", "pod1", "sa1", map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    	s.assertAddresses(t, "", "pod1")
    	s.assertEvent(t, s.podXdsName("pod1"))
    
    	s.addPods(t, "127.0.0.2", "pod2", "sa1", map[string]string{"app": "a", "other": "label"}, nil, true, corev1.PodRunning)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	dsw.AddNode(nodeName)
    	generatedVolumeName1, pod1AddErr := dsw.AddPod(types.UniquePodName(pod1Name), controllervolumetesting.NewPod(pod1Name, pod1Name), volumeSpec, nodeName)
    	if pod1AddErr != nil {
    		t.Fatalf(
    			"AddPod failed for pod %q. Expected: <no error> Actual: <%v>",
    			pod1Name,
    			pod1AddErr)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/goaway.go

    )
    
    // GoawayDecider decides if server should send a GOAWAY
    type GoawayDecider interface {
    	Goaway(r *http.Request) bool
    }
    
    var (
    	// randPool used to get a rand.Rand and generate a random number thread-safely,
    	// which improve the performance of using rand.Rand with a locker
    	randPool = &sync.Pool{
    		New: func() interface{} {
    			return rand.New(rand.NewSource(rand.Int63()))
    		},
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    		addNodes(manager.nodeStore, 5, 5, simpleNodeLabel)
    		addPods(manager.podStore, "node-0", simpleDaemonSetLabel, ds, 1)
    		addPods(manager.podStore, "node-1", simpleDaemonSetLabel, ds, 3)
    		addPods(manager.podStore, "node-1", simpleDaemonSetLabel2, ds, 2)
    		addPods(manager.podStore, "node-2", simpleDaemonSetLabel, ds, 4)
    		addPods(manager.podStore, "node-6", simpleDaemonSetLabel, ds, 13)
    		addPods(manager.podStore, "node-7", simpleDaemonSetLabel2, ds, 4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdpersistentvolumesource.go

    	b.FSType = &value
    	return b
    }
    
    // WithRBDPool sets the RBDPool field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the RBDPool field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

        private java.util.List<String> goals;
    
        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method addGoal.
         *
         * @param string a string object.
         */
        public void addGoal(String string) {
            getGoals().add(string);
        } // -- void addGoal( String )
    
        /**
         * Get configuration to pass to the goals.
         *
         * @return Object
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top