Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for addTab (0.17 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2.go

    		cronJobListerSynced: cronJobsInformer.Informer().HasSynced,
    		now:                 time.Now,
    	}
    
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    jm.addJob,
    		UpdateFunc: jm.updateJob,
    		DeleteFunc: jm.deleteJob,
    	})
    
    	cronJobsInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.enqueueController(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    			for j := uintptr(0); j < 8; j++ {
    				print("        ", add(scanp, (i+j)*goarch.PtrSize), ":", ptrnames[bv.ptrbit(i+j)], ":", hex(*(*uintptr)(add(scanp, (i+j)*goarch.PtrSize))), " # ", i, " ", *addb(bv.bytedata, i/8), "\n")
    			}
    		}
    		b := *(addb(bv.bytedata, i/8))
    		for b != 0 {
    			j := uintptr(sys.TrailingZeros8(b))
    			b &= b - 1
    			pp := (*uintptr)(add(scanp, (i+j)*goarch.PtrSize))
    		retry:
    			p := *pp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/inl_test.go

    	// be inlinable. If they have no callers in their packages, they
    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    			"adjustpointer",
    			"alignDown",
    			"alignUp",
    			"bucketMask",
    			"bucketShift",
    			"chanbuf",
    			"evacuated",
    			"fastlog2",
    			"float64bits",
    			"funcspdelta",
    			"getm",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption.go

    	})
    	dc.podLister = podInformer.Lister()
    	dc.podListerSynced = podInformer.Informer().HasSynced
    
    	pdbInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			dc.addDB(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			dc.updateDB(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			dc.removeDB(logger, obj)
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/anames.go

    package x86
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "AAA",
    	"AAD",
    	"AAM",
    	"AAS",
    	"ADCB",
    	"ADCL",
    	"ADCQ",
    	"ADCW",
    	"ADCXL",
    	"ADCXQ",
    	"ADDB",
    	"ADDL",
    	"ADDPD",
    	"ADDPS",
    	"ADDQ",
    	"ADDSD",
    	"ADDSS",
    	"ADDSUBPD",
    	"ADDSUBPS",
    	"ADDW",
    	"ADJSP",
    	"ADOXL",
    	"ADOXQ",
    	"AESDEC",
    	"AESDECLAST",
    	"AESENC",
    	"AESENCLAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

                            AttrValue* value) {
      auto* list = value->mutable_list();
      for (mlir::Attribute a : attr.getValue()) {
        if (auto attr = mlir::dyn_cast<mlir::BoolAttr>(a)) {
          list->add_b(attr.getValue());
        } else if (auto attr = mlir::dyn_cast<mlir::IntegerAttr>(a)) {
          list->add_i(attr.getInt());
        } else if (auto attr = mlir::dyn_cast<mlir::FloatAttr>(a)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. migrator/migrator.go

    	sql.WriteString("CREATE ")
    	if option.Replace {
    		sql.WriteString("OR REPLACE ")
    	}
    	sql.WriteString("VIEW ")
    	m.QuoteTo(sql, name)
    	sql.WriteString(" AS ")
    
    	m.DB.Statement.AddVar(sql, option.Query)
    
    	if option.CheckOption != "" {
    		sql.WriteString(" ")
    		sql.WriteString(option.CheckOption)
    	}
    	return m.DB.Exec(m.Explain(sql.String(), m.DB.Statement.Vars...)).Error
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. src/runtime/arena.go

    	p := typ.GCData // start of 1-bit pointer mask (or GC program)
    	var gcProgBits uintptr
    	if typ.Kind_&abi.KindGCProg != 0 {
    		// Expand gc program, using the object itself for storage.
    		gcProgBits = runGCProg(addb(p, 4), (*byte)(ptr))
    		p = (*byte)(ptr)
    	}
    	nb := typ.PtrBytes / goarch.PtrSize
    
    	for i := uintptr(0); i < nb; i += ptrBits {
    		k := nb - i
    		if k > ptrBits {
    			k = ptrBits
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	           cc:da:f8:fb:c3:04:c7:a7:60:98:76:5c:32:82:5c:ec:95:a0:
    	           51:74:12:12:c0:7a:8b:68:bc:8b:47:47:db:95:20:34:be:69:
    	           d2:fc:d5:d7:e7:4b:7c:e1:f3:bc:72:3c:b1:f5:d4:db:71:ad:
    	           d8:a7:ad:ab:91:68:c9:16:0a:e9:76:ed:87:0f:83:24:cd:ab:
    	           c7:a4:16:3f:c6:7c:99:18:bb:b1:12:11:a4:a5:99:af:17:11:
    	           e7:b1
    	   -----BEGIN CERTIFICATE-----
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    	// and disabling it by default allows stackmapdata to be inlined.
    	if stackDebug > 0 && (n < 0 || n >= stkmap.n) {
    		throw("stackmapdata: index out of range")
    	}
    	return bitvector{stkmap.nbit, addb(&stkmap.bytedata[0], uintptr(n*((stkmap.nbit+7)>>3)))}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top