Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for Rx (0.02 sec)

  1. src/cmd/internal/obj/loong64/obj.go

    	// internally defined symbols.
    	if p.From.Type == obj.TYPE_ADDR && p.From.Name == obj.NAME_EXTERN && !p.From.Sym.Local() {
    		// MOVV $sym, Rx becomes MOVV sym@GOT, Rx
    		// MOVV $sym+<off>, Rx becomes MOVV sym@GOT, Rx; ADD <off>, Rx
    		if p.As != AMOVV {
    			ctxt.Diag("do not know how to handle TYPE_ADDR in %v with -shared", p)
    		}
    		if p.To.Type != obj.TYPE_REG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. src/go/doc/doc_test.go

    	*Package
    	FSet *token.FileSet
    }
    
    func test(t *testing.T, mode Mode) {
    	// determine file filter
    	filter := isGoFile
    	if *files != "" {
    		rx, err := regexp.Compile(*files)
    		if err != nil {
    			t.Fatal(err)
    		}
    		filter = func(fi fs.FileInfo) bool {
    			return isGoFile(fi) && rx.MatchString(fi.Name())
    		}
    	}
    
    	// get packages
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    		}
    	}
    	return nil, nil, fmt.Errorf("no supported conversion review versions")
    }
    
    func getRawExtensionObject(rx runtime.RawExtension) (runtime.Object, error) {
    	if rx.Object != nil {
    		return rx.Object, nil
    	}
    	u := unstructured.Unstructured{}
    	err := u.UnmarshalJSON(rx.Raw)
    	if err != nil {
    		return nil, err
    	}
    	return &u, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  4. tests/integration/security/sds_ingress/util/test_certs.go

    leyAazR5qDj9fdveP4TxJzZkhLEaw8qnJYNXvgVkMHkEDyArFBcrVoGFKl5i9HKH
    kga7CwpQ/PapQ7UUmiBQ7D9nuk96YCVWyVZEdnQm7gsgTmw9ZwdbDDBW+nnU9nx9
    GoqmFPFvA3LwnQLHYf8ZXNSYzrFGypE4v5WSg0j0IAu7Msw7RtBrcZ2ygkROAfL2
    kGw60ufCeki0bG2X/YCLvKcL/ldtUtEoKC4O9Wfl/Rx+tHQTJiIokAH6vPLV5odH
    zm3/ezl1Q3WK4Na/Va4g+CG2D6hqVTLwgfmw9ju531+KQyscY7k0b1Sjjz1KlE+b
    5cN8QEereE/ce0fQo+5DcZTiYJIKRaVC3yYWUVZaGB3Zms34Ht1dKLeyI5JZ4YCx
    fKakIr1TGGR3ep+ErCOMh8WuCTFWA+DUYyuk7s8P7tO+JEL3LSOt9iWeKKLLKmI/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

            if: ${{ matrix.language == 'java' }}
    
        - name: Disable checksum offloading
          # See: https://github.com/actions/virtual-environments/issues/1187#issuecomment-686735760
          run: sudo ethtool -K eth0 tx off rx off
    
        # Install and setup JDK 11
        - name: Setup JDK 11
          uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
    
        # Initializes the CodeQL tools for scanning.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    	// Store the resume SP and PC in alternate registers
    	// and return to sigresume on the g0 stack.
    	// sigresume makes no use of the stack at all,
    	// loading SP from RX and jumping to RY, being RX and RY two scratch registers.
    	// Note that blindly smashing RX and RY is only safe because we know sigpanic
    	// will not actually return to the original frame, so the registers
    	// are effectively dead. But this does mean we can't use the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    	k, R, err := randomPoint(c, csprng)
    	if err != nil {
    		return nil, err
    	}
    
    	// kInv = k⁻¹
    	kInv := bigmod.NewNat()
    	inverse(c, kInv, k)
    
    	Rx, err := R.BytesX()
    	if err != nil {
    		return nil, err
    	}
    	r, err := bigmod.NewNat().SetOverflowingBytes(Rx, c.N)
    	if err != nil {
    		return nil, err
    	}
    
    	// The spec wants us to retry here, but the chance of hitting this condition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/go/types/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// Print the tree of scopes.
    	// For determinism, we redact addresses.
    	var buf strings.Builder
    	pkg.Scope().WriteTo(&buf, 0, true)
    	rx := regexp.MustCompile(` 0x[a-fA-F\d]*`)
    	fmt.Println(rx.ReplaceAllString(buf.String(), ""))
    
    	// Output:
    	// package "temperature" scope {
    	// .  const temperature.Boiling temperature.Celsius
    	// .  type temperature.Celsius float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. .idea/inspectionProfiles/Gradle.xml

              <option value="org.gradle.api.Incubating" />
              <option value="org.jetbrains.annotations.ApiStatus.Experimental" />
              <option value="rx.annotations.Beta" />
              <option value="rx.annotations.Experimental" />
            </set>
          </option>
        </inspection_tool>
      </profile>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. docs/logging/README.md

      "event": "",
      "trigger": "incoming",
      "api": {
        "name": "PutObject",
        "bucket": "testbucket",
        "object": "hosts",
        "status": "OK",
        "statusCode": 200,
        "rx": 401,
        "tx": 0,
        "timeToResponse": "13309747ns",
        "timeToResponseInNS": "13309747"
      },
      "remotehost": "127.0.0.1",
      "requestID": "17CDC1F4D7E69123",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top