Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for pfxadd (0.31 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    			o2 = AOP_IRR(OP_ADDI, uint32(p.To.Reg), uint32(p.To.Reg), uint32(v))
    		}
    
    		if o.ispfx {
    			if rel == nil {
    				o1, o2 = pfxadd(int16(p.To.Reg), int16(r), PFX_R_ABS, v)
    			} else {
    				o1, o2 = pfxadd(int16(p.To.Reg), REG_R0, PFX_R_PCREL, 0)
    				rel.Type = objabi.R_ADDRPOWER_PCREL34
    			}
    		}
    
    	case 27: /* subc ra,$simm,rd => subfic rd,ra,$simm */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/events.go

    limitations under the License.
    */
    
    package queue
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    const (
    	// PodAdd is the event when a new pod is added to API server.
    	PodAdd = "PodAdd"
    	// ScheduleAttemptFailure is the event when a schedule attempt fails.
    	ScheduleAttemptFailure = "ScheduleAttemptFailure"
    	// BackoffComplete is the event when a pod finishes backoff.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. test/codegen/floats.go

    	return x*y - z
    }
    
    func FusedSub32_b(x, y, z float32) float32 {
    	// arm64:"FMSUBS"
    	// riscv64:"FNMSUBS\t"
    	return z - x*y
    }
    
    func FusedAdd64(x, y, z float64) float64 {
    	// s390x:"FMADD\t"
    	// ppc64x:"FMADD\t"
    	// arm64:"FMADDD"
    	// riscv64:"FMADDD\t"
    	return x*y + z
    }
    
    func FusedSub64_a(x, y, z float64) float64 {
    	// s390x:"FMSUB\t"
    	// ppc64x:"FMSUB\t"
    	// riscv64:"FMSUBD\t"
    	return x*y - z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/anames.go

    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    	"EXTSBCC",
    	"EXTSH",
    	"EXTSHCC",
    	"FABS",
    	"FABSCC",
    	"FADD",
    	"FADDCC",
    	"FADDS",
    	"FADDSCC",
    	"FCMPO",
    	"FCMPU",
    	"FCTIW",
    	"FCTIWCC",
    	"FCTIWZ",
    	"FCTIWZCC",
    	"FDIV",
    	"FDIVCC",
    	"FDIVS",
    	"FDIVSCC",
    	"FMADD",
    	"FMADDCC",
    	"FMADDS",
    	"FMADDSCC",
    	"FMOVD",
    	"FMOVDCC",
    	"FMOVDU",
    	"FMOVS",
    	"FMOVSU",
    	"FMOVSX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				{eventHappens: &PvcAdd},
    				{podPopped: pod},
    				// This gets added for the pod.
    				{eventHappens: &PvAdd},
    				// This doesn't get added because no plugin is interested in PvUpdate.
    				{eventHappens: &PvUpdate},
    			},
    			wantInFlightPods:   []*v1.Pod{pod},
    			wantInFlightEvents: []interface{}{pod, PvAdd},
    			queueingHintMap: QueueingHintMapPerProfile{
    				"": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.file_crawling_title_details=Datei-Crawling-Konfiguration
    labels.included_paths=Eingeschlossene Pfade beim Crawling
    labels.excluded_paths=Ausgeschlossene Pfade beim Crawling
    labels.included_doc_paths=Eingeschlossene Pfade bei der Indizierung
    labels.excluded_doc_paths=Ausgeschlossene Pfade bei der Indizierung
    labels.config_parameter=Konfigurationsparameter
    labels.max_access_count=Max. Anzahl an Zugriffen
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  7. test/codegen/math.go

    	sink64[3] = math.Copysign(-1, c)
    }
    
    func fma(x, y, z float64) float64 {
    	// amd64/v3:-".*x86HasFMA"
    	// amd64:"VFMADD231SD"
    	// arm/6:"FMULAD"
    	// arm64:"FMADDD"
    	// s390x:"FMADD"
    	// ppc64x:"FMADD"
    	// riscv64:"FMADDD"
    	return math.FMA(x, y, z)
    }
    
    func fms(x, y, z float64) float64 {
    	// riscv64:"FMSUBD"
    	return math.FMA(x, y, -z)
    }
    
    func fnms(x, y, z float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

    	AMODUW
    	AMODSD
    	AMODSW
    	AEQV
    	AEQVCC
    	AEXTSB
    	AEXTSBCC
    	AEXTSH
    	AEXTSHCC
    	AFABS
    	AFABSCC
    	AFADD
    	AFADDCC
    	AFADDS
    	AFADDSCC
    	AFCMPO
    	AFCMPU
    	AFCTIW
    	AFCTIWCC
    	AFCTIWZ
    	AFCTIWZCC
    	AFDIV
    	AFDIVCC
    	AFDIVS
    	AFDIVSCC
    	AFMADD
    	AFMADDCC
    	AFMADDS
    	AFMADDSCC
    	AFMOVD
    	AFMOVDCC
    	AFMOVDU
    	AFMOVS
    	AFMOVSU
    	AFMOVSX
    	AFMOVSZ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller.go

    		pvInformer.Lister(),
    		adc.csiMigratedPluginManager,
    		adc.intreeToCSITranslator)
    
    	podInformer.Informer().AddEventHandler(kcache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			adc.podAdd(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			adc.podUpdate(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			adc.podDelete(logger, obj)
    		},
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    	t.Parallel()
    
    	type podAdd struct {
    		delay time.Duration
    	}
    
    	tests := []struct {
    		name             string
    		batchPeriod      time.Duration
    		adds             []podAdd
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three adds with no batching",
    			batchPeriod: 0 * time.Second,
    			adds: []podAdd{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top