Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for relocs (0.27 sec)

  1. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

        </snapshotRepository>
        <site>
          <url>https://parent.url/site</url>
          <id>parent.site</id>
        </site>
        <downloadUrl>http://parent.url/download</downloadUrl>
        <relocation>
          <message>parent-reloc-msg</message>
        </relocation>
      </distributionManagement>
    
      <properties>
        <parentProperty>parent-property</parentProperty>
        <overriddenProperty>parent-property</overriddenProperty>
      </properties>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 5K bytes
    - Viewed (0)
  2. src/log/slog/attr_test.go

    		b = Bool("key", true).Value.Bool()
    		s = String("key", "foo").Value.String()
    		d = Duration("key", d).Value.Duration()
    		x = Any("key", p).Value.Any()
    	}))
    	if a != 0 {
    		t.Errorf("got %d allocs, want zero", a)
    	}
    	_ = u
    	_ = f
    	_ = b
    	_ = s
    	_ = x
    }
    
    func BenchmarkAttrString(b *testing.B) {
    	var (
    		is string
    		u  string
    		f  string
    		bn string
    		s  string
    		x  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/os_linux_ppc64x.go

    //go:build linux && (ppc64 || ppc64le)
    
    package runtime
    
    import "internal/cpu"
    
    func archauxv(tag, val uintptr) {
    	switch tag {
    	case _AT_HWCAP:
    		// ppc64x doesn't have a 'cpuid' instruction
    		// equivalent and relies on HWCAP/HWCAP2 bits for
    		// hardware capabilities.
    		cpu.HWCap = uint(val)
    	case _AT_HWCAP2:
    		cpu.HWCap2 = uint(val)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 526 bytes
    - Viewed (0)
  4. src/log/slog/internal/buffer/buffer_test.go

    	}
    	testenv.SkipIfOptimizationOff(t)
    	got := int(testing.AllocsPerRun(5, func() {
    		b := New()
    		defer b.Free()
    		b.WriteString("not 1K worth of bytes")
    	}))
    	if got != 0 {
    		t.Errorf("got %d allocs, want 0", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:48:35 UTC 2023
    - 776 bytes
    - Viewed (0)
  5. docs/de/docs/how-to/extending-openapi.md

    Fügen wir beispielsweise <a href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo" class="external-link" target="_blank">ReDocs OpenAPI-Erweiterung</a> zum Einbinden eines benutzerdefinierten Logos hinzu.
    
    ### Normales **FastAPI**
    
    Schreiben Sie zunächst wie gewohnt Ihre ganze **FastAPI**-Anwendung:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 16:44:05 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/runtime/iface_test.go

    	if runtime.Compiler != "gc" {
    		t.Skip("skipping on non-gc compiler")
    	}
    
    	n := testing.AllocsPerRun(1, func() {
    		_ = e == ts
    		_ = i1 == ts
    		_ = e == 1
    	})
    
    	if n > 0 {
    		t.Fatalf("iface cmp allocs=%v; want 0", n)
    	}
    }
    
    func BenchmarkEqEfaceConcrete(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		_ = e == ts
    	}
    }
    
    func BenchmarkEqIfaceConcrete(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519_test.go

    func TestAllocations(t *testing.T) {
    	testenv.SkipIfOptimizationOff(t)
    
    	if allocs := testing.AllocsPerRun(100, func() {
    		p := NewIdentityPoint()
    		p.Add(p, NewGeneratorPoint())
    		s := NewScalar()
    		testAllocationsSink ^= s.Bytes()[0]
    		testAllocationsSink ^= p.Bytes()[0]
    	}); allocs > 0 {
    		t.Errorf("expected zero allocations, got %0.1v", allocs)
    	}
    }
    
    func decodeHex(s string) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. src/runtime/defs_netbsd_386.go

    	REG_ESP    = C._REG_ESP
    	REG_EBX    = C._REG_EBX
    	REG_EDX    = C._REG_EDX
    	REG_ECX    = C._REG_ECX
    	REG_EAX    = C._REG_EAX
    	REG_TRAPNO = C._REG_TRAPNO
    	REG_ERR    = C._REG_ERR
    	REG_EIP    = C._REG_EIP
    	REG_CS     = C._REG_CS
    	REG_EFL    = C._REG_EFL
    	REG_UESP   = C._REG_UESP
    	REG_SS     = C._REG_SS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 855 bytes
    - Viewed (0)
  9. src/cmd/link/internal/x86/obj.go

    			LinuxdynldMusl: "/lib/ld-musl-i386.so.1",
    			Freebsddynld:   "/usr/libexec/ld-elf.so.1",
    			Openbsddynld:   "/usr/libexec/ld.so",
    			Netbsddynld:    "/usr/libexec/ld.elf_so",
    			Solarisdynld:   "/lib/ld.so.1",
    
    			Reloc1:    elfreloc1,
    			RelocSize: 8,
    			SetupPLT:  elfsetupplt,
    		},
    	}
    
    	return arch, theArch
    }
    
    func archinit(ctxt *ld.Link) {
    	switch ctxt.HeadType {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/unicode/utf16/utf16_test.go

    func TestAllocationsDecode(t *testing.T) {
    	testenv.SkipIfOptimizationOff(t)
    
    	for _, tt := range decodeTests {
    		allocs := testing.AllocsPerRun(10, func() {
    			out := Decode(tt.in)
    			if out == nil {
    				t.Errorf("Decode(%x) = nil", tt.in)
    			}
    		})
    		if allocs > 0 {
    			t.Errorf("Decode allocated %v times", allocs)
    		}
    	}
    }
    
    func TestDecode(t *testing.T) {
    	for _, tt := range decodeTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top