Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 146 for addXor (0.33 sec)

  1. src/cmd/internal/obj/s390x/anamesz.go

    var cnamesz = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"VREG",
    	"AREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"LACON",
    	"DACON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"TLS_LE",
    	"TLS_IE",
    	"GOK",
    	"ADDR",
    	"SYMADDR",
    	"GOTADDR",
    	"TEXTSIZE",
    	"ANY",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 04:57:30 UTC 2016
    - 505 bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/graph_populator.go

    	slices resourcev1alpha2informers.ResourceSliceInformer,
    ) {
    	g := &graphPopulator{
    		graph: graph,
    	}
    
    	podHandler, _ := pods.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    g.addPod,
    		UpdateFunc: g.updatePod,
    		DeleteFunc: g.deletePod,
    	})
    
    	pvsHandler, _ := pvs.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    g.addPV,
    		UpdateFunc: g.updatePV,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/prober_manager.go

    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    // manager use the cached probe results to set the appropriate Ready state in the PodStatus when
    // requested (UpdatePodStatus). Updating probe parameters is not currently supported.
    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/pod_manager.go

    	// SetPods replaces the internal pods with the new pods.
    	// It is currently only used for testing.
    	SetPods(pods []*v1.Pod)
    	// AddPod adds the given pod to the manager.
    	AddPod(pod *v1.Pod)
    	// UpdatePod updates the given pod in the manager.
    	UpdatePod(pod *v1.Pod)
    	// RemovePod deletes the given pod from the manager.  For mirror pods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        // Define a container for animals
        private val animals: ExtensiblePolymorphicDomainObjectContainer<Animal> = objectFactory.polymorphicDomainObjectContainer(Animal::class)
    
        // Add a dog to the container
        fun addDog(name: String, breed: String) {
            var dog : Dog = Dog(name, breed)
            animals.add(dog)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    	syncer := newTestManager(&fake.Clientset{})
    	pod := getTestPod()
    	pod.UID = "first"
    	syncer.podManager.(mutablePodManager).AddPod(pod)
    	differentPod := getTestPod()
    	differentPod.UID = "second"
    	syncer.podManager.(mutablePodManager).AddPod(differentPod)
    	syncer.kubeClient = fake.NewSimpleClientset(pod)
    	syncer.SetPodStatus(differentPod, getRandomPodStatus())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/conventions.kt

        override fun apply(receiver: AssignmentRecordConventionReceiver) {
            receiver.receive(assignmentRecord)
        }
    }
    
    
    /**
     * A convention that applies a data addition operation (e.g. addFoo("bar")).
     */
    class AdditionRecordConvention(private val dataAdditionRecord: DataAdditionRecord) :
        Convention<AdditionRecordConventionReceiver> {
        override fun apply(receiver: AdditionRecordConventionReceiver) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/interface.go

    	// ForgetPod removes an assumed pod from cache.
    	ForgetPod(logger klog.Logger, pod *v1.Pod) error
    
    	// AddPod either confirms a pod if it's assumed, or adds it back if it's expired.
    	// If added back, the pod's information would be added again.
    	AddPod(logger klog.Logger, pod *v1.Pod) error
    
    	// UpdatePod removes oldPod's information and adds newPod's information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    	if max+uint64(len(pr.InlineStrings)) < max {
    		return errors.New("trace contains too many strings")
    	}
    	var addErr error
    	add := func(id stringID, s string) {
    		if err := evt.strings.insert(id, s); err != nil && addErr == nil {
    			addErr = err
    		}
    	}
    	for id, s := range pr.InlineStrings {
    		nid := max + 1 + uint64(id)
    		it.inlineToStringID = append(it.inlineToStringID, nid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/table/writer.go

    func (c *ColoredTableWriter) AddHeader(names ...string) {
    	cells := make([]Cell, 0)
    	for _, name := range names {
    		cells = append(cells, NewCell(name))
    	}
    	c.header = Row{Cells: cells}
    }
    
    func (c *ColoredTableWriter) AddRow(obj interface{}) {
    	c.rows = append(c.rows, c.addRowFunc(obj))
    }
    
    func (c *ColoredTableWriter) Flush() {
    	output := c.getTableOutput(c.rows)
    	if len(output) == 0 {
    		return
    	}
    	sep := getMaxWidths(output)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top