Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 299 for 1104 (1.05 sec)

  1. src/syscall/asm_openbsd_ppc64.s

    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    	JMP	·rawSyscall6Internal(SB)
    
    // func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno)
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s

    // The runtime may know about them.
    
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    
    TEXT	·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    	JMP	syscall·Syscall9(SB)
    
    TEXT	·RawSyscall(SB),NOSPLIT,$0-56
    	JMP	syscall·RawSyscall(SB)
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 716 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar.sha1

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 40 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1

    Tamas Cservenak <******@****.***> 1703012935 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 40 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    metadata:
      name: testing-gateway-01-test-04
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - '*.testing-01-04.com'
        port:
          name: http
          number: 80
          protocol: HTTP
      - hosts:
        - 'web.testing-02-04.com'
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/base/tests/tensor_test.cc

      absl::Span<const typename TypeParam::type> tensor_view(
          reinterpret_cast<typename TypeParam::type*>(tensor.data()), value.size());
      EXPECT_EQ(tensor_view[0], 42);
      EXPECT_EQ(tensor_view[1], 100);
      EXPECT_EQ(tensor_view[2], 0);
      EXPECT_EQ(tensor_view[3], 1);
      EXPECT_EQ(tensor_view[4], 4);
      EXPECT_EQ(tensor_view[5], 29);
    
      EXPECT_EQ(tensor.num_bytes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. test/clearfat.go

    // license that can be found in the LICENSE file.
    
    // Check that {5,6,8,9}g/ggen.c:clearfat is zeroing the entire object.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    const ntest = 1100
    
    func main() {
    	var decls, calls bytes.Buffer
    
    	for i := 1; i <= ntest; i++ {
    		s := strconv.Itoa(i)
    		decls.WriteString(strings.Replace(decl, "$", s, -1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 31 15:08:27 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/loadstore_test.go

    		}
    	}
    	{
    		var in int16 = (1 << 10) + 1
    		var p int16
    		got := loadHitStore16(in, &p)
    		want := int32(in * in)
    		if got != want {
    			t.Errorf("testLoadHitStore (int16) failed. want = %d, got = %d", want, got)
    		}
    	}
    	{
    		var in uint16 = (1 << 10) + 1
    		var p uint16
    		got := loadHitStoreU16(in, &p)
    		want := uint32(in * in)
    		if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. test/const.go

    const (
    	c0      = 0
    	cm1     = -1
    	chuge   = 1 << 100
    	chuge_1 = chuge - 1
    	c1      = chuge >> 100
    	c3div2  = 3 / 2
    	c1e3    = 1e3
    
    	rsh1 = 1e100 >> 1000
    	rsh2 = 1e302 >> 1000
    
    	ctrue  = true
    	cfalse = !ctrue
    
    	// Issue #34563
    	_ = string(int(123))
    	_ = string(rune(456))
    )
    
    const (
    	f0              = 0.0
    	fm1             = -1.
    	fhuge   float64 = 1 << 100
    	fhuge_1 float64 = chuge - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    kind: Gateway
    metadata:
      name: testing-gateway-01-test-04
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - '*.testing-01-04.com'
        port:
          name: http
          number: 80
          protocol: HTTP
      - hosts:
        - 'web.testing-02-04.com'
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top