Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for Rx (0.12 sec)

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

    	// internally defined symbols.
    	if p.From.Type == obj.TYPE_ADDR && p.From.Name == obj.NAME_EXTERN && !p.From.Sym.Local() {
    		// MOVW $sym, Rx becomes MOVW sym@GOT, Rx
    		// MOVW $sym+<off>, Rx becomes MOVW sym@GOT, Rx; ADD <off>, Rx
    		if p.As != AMOVW {
    			c.ctxt.Diag("do not know how to handle TYPE_ADDR in %v with -dynlink", p)
    		}
    		if p.To.Type != obj.TYPE_REG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/obj6.go

    		// $LEA sym, Rx becomes $MOV $sym, Rx which will be rewritten below
    		p.As = mov
    		p.From.Type = obj.TYPE_ADDR
    	}
    	if p.From.Type == obj.TYPE_ADDR && p.From.Name == obj.NAME_EXTERN && !p.From.Sym.Local() {
    		// $MOV $sym, Rx becomes $MOV sym@GOT, Rx
    		// $MOV $sym+<off>, Rx becomes $MOV sym@GOT, Rx; $LEA <off>(Rx), Rx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptGenerator.java

                }
            }
    
            private void createWindowsExecutablePermission(File file) {
                Chmod chmod = new Chmod();
                chmod.setFile(file);
                chmod.setPerm("ugo+rx");
                chmod.setProject(AntUtil.createProject());
                chmod.execute();
            }
    
            private void createPosixExecutablePermission(File file) {
                Path path = file.toPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/obj7.go

    	// internally defined symbols.
    	if p.From.Type == obj.TYPE_ADDR && p.From.Name == obj.NAME_EXTERN && !p.From.Sym.Local() {
    		// MOVD $sym, Rx becomes MOVD sym@GOT, Rx
    		// MOVD $sym+<off>, Rx becomes MOVD sym@GOT, Rx; ADD <off>, Rx
    		if p.As != AMOVD {
    			c.ctxt.Diag("do not know how to handle TYPE_ADDR in %v with -dynlink", p)
    		}
    		if p.To.Type != obj.TYPE_REG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  5. hack/lib/protoc.sh

          kube::util::download_file "${url}" "${download_file}"
          unzip -o "${download_file}" -d "${download_folder}"
          ln -fns "${download_folder}" protoc
          mv protoc/bin/protoc protoc/protoc
          chmod -R +rX protoc/protoc
          rm -fr protoc/include
          rm "${download_file}"
        fi
        kube::log::info "protoc v${PROTOC_VERSION} installed. To use:"
        kube::log::info "export PATH=\"$(pwd)/protoc:\${PATH}\""
      )
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/runtime/security_test.go

    	// chown lives, but using 'su root -c' gives us the correct PATH.
    
    	// buildTestProg uses os.MkdirTemp which creates directories with 0700, which prevents
    	// setuid binaries from executing because of the missing g+rx, so we need to set the parent
    	// directory to better permissions before anything else. We created this directory, so we
    	// shouldn't need to do any privilege trickery.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    				}
    			} else {
    				op = fp.goName + op[len(fp.gnuName):]
    			}
    			// transform registers
    			for ix, ri := range fp.transArgs {
    				switch {
    				case strings.HasSuffix(args[ri], "[1]"): // MOVW Rx, Dy[1]
    					break
    				case strings.HasSuffix(args[ri], "[0]"): // Dx[0] -> Fx
    					args[ri] = strings.Replace(args[ri], "[0]", "", -1)
    					fallthrough
    				case strings.HasPrefix(args[ri], "D"): // Dx -> Fx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. cmd/metrics.go

    			nil, nil),
    		prometheus.CounterValue,
    		float64(connStats.internodeOutputBytes),
    	)
    
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(interNodeNamespace, "rx", "bytes_total"),
    			"Total number of internode bytes received by current MinIO server instance",
    			nil, nil),
    		prometheus.CounterValue,
    		float64(connStats.internodeInputBytes),
    	)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/go/types/check_test.go

    				continue
    			}
    			if substr {
    				if !strings.Contains(gotMsg, unquoted) {
    					continue
    				}
    			} else {
    				rx, err := regexp.Compile(unquoted)
    				if err != nil {
    					t.Errorf("%s:%d:%d: %v", filename, line, want.col, err)
    					continue
    				}
    				if !rx.MatchString(gotMsg) {
    					continue
    				}
    			}
    			indices = append(indices, i)
    		}
    		if len(indices) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check_test.go

    				continue
    			}
    			if substr {
    				if !strings.Contains(gotMsg, unquoted) {
    					continue
    				}
    			} else {
    				rx, err := regexp.Compile(unquoted)
    				if err != nil {
    					t.Errorf("%s:%d:%d: %v", filename, line, want.Pos.Col(), err)
    					continue
    				}
    				if !rx.MatchString(gotMsg) {
    					continue
    				}
    			}
    			indices = append(indices, i)
    		}
    		if len(indices) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top