Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for opldrr (0.19 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		return OptionS<<10 | 0x3<<21 | 0x1f<<27 | 1<<26
    	}
    	c.ctxt.Diag("bad opldrr %v\n%v", a, p)
    	return 0
    }
    
    // opstrr returns the ARM64 opcode encoding corresponding to the obj.As opcode
    // for store instruction with register offset.
    // The offset register can be (Rn)(Rm.UXTW<<2) or (Rn)(Rm<<2) or (Rn)(Rm).
    func (c *ctxt7) opstrr(p *obj.Prog, a obj.As, extension bool) uint32 {
    	OptionS := uint32(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    		a := OP_TEN(8, 1325) // movfr2gr.s
    		o1 = OP_RR(a, uint32(p.From.Reg), uint32(p.To.Reg))
    
    	case 32: // fadd fr1,[fr2],fr3
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 = OP_RRR(c.oprrr(p.As), uint32(p.From.Reg), uint32(r), uint32(p.To.Reg))
    
    	case 33: // fabs fr1, fr3
    		o1 = OP_RRR(c.oprrr(p.As), uint32(0), uint32(p.From.Reg), uint32(p.To.Reg))
    
    	case 34: // mov $con,fr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. pkg/controller/deployment/deployment_controller.go

    	curRS := cur.(*apps.ReplicaSet)
    	oldRS := old.(*apps.ReplicaSet)
    	if curRS.ResourceVersion == oldRS.ResourceVersion {
    		// Periodic resync will send update events for all known replica sets.
    		// Two different versions of the same replica set will always have different RVs.
    		return
    	}
    
    	curControllerRef := metav1.GetControllerOf(curRS)
    	oldControllerRef := metav1.GetControllerOf(oldRS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore_test.go

    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("v", OpConstBool, c.config.Types.Bool, 1, nil),
    			Valu("addr1", OpAddr, ptrType, 0, nil, "sb"),
    			Valu("addr2", OpAddr, ptrType, 0, nil, "sb"),
    			Valu("addr3", OpAddr, ptrType, 0, nil, "sb"),
    			Valu("zero1", OpZero, types.TypeMem, 1, c.config.Types.Bool, "addr3", "start"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.groovy

            "build logic defines default tasks"                | "defaultTasks = ['broken']"
            "build logic injects tasks into start param"       | "gradle.startParameter.taskNames = ['broken']"
        }
    
        // older versions do not run any tasks
        @TargetGradleVersion('>=4.7')
        def "empty array of task names means run help task"() {
            file('build.gradle') << """
            """
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    	oldRS := old.(*apps.ReplicaSet)
    	curRS := cur.(*apps.ReplicaSet)
    
    	// TODO: make a KEP and fix informers to always call the delete event handler on re-create
    	if curRS.UID != oldRS.UID {
    		key, err := controller.KeyFunc(oldRS)
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", oldRS, err))
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            nestedBuildSrc.includedBuilds.empty
            nestedBuildSrc.editableBuilds.empty
        }
    
        @TargetGradleVersion(">4.9 <7.1")
        // versions 4.9 and older do not like nested included builds or nested buildSrc builds
        def "older versions do not include buildSrc builds in model"() {
            buildsWithBuildSrc()
    
            given:
            def model = withConnection {
                it.getModel(GradleBuild)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. cmd/config-migrate.go

    		if err == nil {
    			return newCfg, nil
    		}
    
    		// Read older `.minio.sys/config/config.json`, if not
    		// possible just fail.
    		if err = json.Unmarshal(data, cfg); err != nil {
    			// Unable to parse old JSON simply re-initialize a new one.
    			return newServerCfg()
    		}
    	}
    
    	if !globalCredViaEnv && cfg.Credential.IsValid() {
    		// Preserve older credential if we do not have
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

            }
        }
    
        /**
         * {@link ZipFile} is more efficient, but causes memory leaks on older Java versions, so we only use it on more recent ones.
         */
        private static boolean isZipFileSafeToUse() {
            String versionString = System.getProperty("java.specification.version");
            // Java versions 8 and older had 1.8 versioning scheme, later ones have single number 9, 10, ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    		// trap into the kernel and then return back to userspace.
    		//
    		// But on older kernels, such as Linux 4.4.180 as used on many Synology
    		// devices, calling readARM64Registers (specifically getisar0) will
    		// cause a SIGILL and we'll die. So for older kernels, parse /proc/cpuinfo
    		// instead.
    		//
    		// See golang/go#57336.
    		if linuxKernelCanEmulateCPUID() {
    			readARM64Registers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top