Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for relocs (0.09 sec)

  1. test/fixedbugs/issue20780.go

    // We have a limit of 1GB for stack frames.
    // Make sure we include the callee args section.
    
    package main
    
    type Big = [400e6]byte
    
    func f() { // GC_ERROR "stack frame too large"
    	// Note: This test relies on the fact that we currently always
    	// spill function-results to the stack, even if they're so
    	// large that we would normally heap allocate them. If we ever
    	// improve the backend to spill temporaries to the heap, this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 10 08:01:49 UTC 2021
    - 755 bytes
    - Viewed (0)
  2. test/live1.go

    // trigger the generation of wrapper functions with no
    // clear line number (they end up using line 1), and those
    // would have annotations printed if we used -live=1,
    // like the live.go test does.
    // Instead, this test relies on the fact that the liveness
    // analysis turns any non-live parameter on entry into
    // a compile error. Compiling successfully means that bug
    // has been avoided.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/GradleDependencies.java

    package org.gradle.api.artifacts.dsl;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.artifacts.Dependency;
    
    /**
     * Dependency APIs available for {@code dependencies} blocks that can build software that relies on Gradle APIs.
     *
     * @apiNote This interface is intended to be used to mix-in methods that expose Gradle-specific dependencies to the DSL.
     * @implSpec The default implementation of all methods should not be overridden.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 23:20:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/issue50182_test.go

    	var data = sort.IntSlice{-10, -5, 0, 1, 2, 3, 5, 7, 11, 100, 100, 100, 1000, 10000}
    	f := func() {
    		genericSorted(data)
    	}
    	if n := testing.AllocsPerRun(10, f); n > 0 {
    		t.Errorf("got %f allocs, want 0", n)
    	}
    }
    
    // Test that escape analysis correctly tracks escaping inside of methods
    // called on generic types.
    type fooer interface {
    	foo()
    }
    type P struct {
    	p *int
    	q int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 23:35:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/mounter-defaults.go

    package flexvolume
    
    import (
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type mounterDefaults flexVolumeMounter
    
    // SetUpAt is part of the volume.Mounter interface.
    // This implementation relies on the attacher's device mount path and does a bind mount to dir.
    func (f *mounterDefaults) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.Warning(logPrefix(f.plugin), "using default SetUpAt to ", dir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 15:56:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

            // Direct dependencies should be computed lazily, because the built-ins module will be reachable via module dependencies. Getting
            // the built-ins module relies on the built-ins session, which may depend on services that are registered after
            // `KtStaticModuleDependentsProvider`.
            buildDependentsMap(modules) { it.allDirectDependencies() }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/debug/macho/macho.go

    	Offset   uint32
    	Align    uint32
    	Reloff   uint32
    	Nreloc   uint32
    	Flags    uint32
    	Reserve1 uint32
    	Reserve2 uint32
    }
    
    // A Section64 is a 64-bit Mach-O section header.
    type Section64 struct {
    	Name     [16]byte
    	Seg      [16]byte
    	Addr     uint64
    	Size     uint64
    	Offset   uint32
    	Align    uint32
    	Reloff   uint32
    	Nreloc   uint32
    	Flags    uint32
    	Reserve1 uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. src/runtime/debugcall.go

    	getg().schedlink.set(callingG)
    	mcall(func(gp *g) {
    		callingG := gp.schedlink.ptr()
    		gp.schedlink = 0
    
    		// Unlock this goroutine from the M if necessary. The
    		// calling G will relock.
    		if gp.lockedm != 0 {
    			gp.lockedm = 0
    			gp.m.lockedg = 0
    		}
    
    		// Switch back to the calling goroutine. At some point
    		// the scheduler will schedule us again and we'll
    		// finish exiting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/os/exec/lp_linux_test.go

    	"errors"
    	"internal/syscall/unix"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"syscall"
    	"testing"
    )
    
    func TestFindExecutableVsNoexec(t *testing.T) {
    	t.Parallel()
    
    	// This test case relies on faccessat2(2) syscall, which appeared in Linux v5.8.
    	if major, minor := unix.KernelVersion(); major < 5 || (major == 5 && minor < 8) {
    		t.Skip("requires Linux kernel v5.8 with faccessat2(2) syscall")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:02:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CachingTextUriResourceLoader.java

        }
    
        /**
         * Is {@code source} a cacheable URL?
         *
         * A URI is not cacheable if it uses a query string because our underlying infrastructure
         * relies on paths to uniquely identify resources and not path+query components.
         */
        private boolean isCacheableResource(URI source) {
            return source.getRawQuery() == null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top