Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 179 of 179 for Stub (0.8 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

        private static final SnapshotHierarchy EMPTY = DefaultSnapshotHierarchy.empty(CASE_SENSITIVE)
    
        DirectorySnapshotter directorySnapshotter = new DirectorySnapshotter(TestFiles.fileHasher(), new StringInterner(), [], Stub(DirectorySnapshotterStatistics.Collector))
    
        def diffListener = new SnapshotHierarchy.NodeDiffListener() {
            @Override
            void nodeRemoved(FileSystemNode node) {
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. src/runtime/asm_s390x.s

    //
    // gcWriteBarrier does NOT follow the Go ABI. It accepts the
    // number of bytes of buffer needed in R9, and returns a pointer
    // to the buffer space in R9.
    // It clobbers R10 (the temp register) and R1 (used by PLT stub).
    // It does not clobber any other general-purpose registers,
    // but may clobber others (e.g., floating point registers).
    TEXT gcWriteBarrier<>(SB),NOSPLIT,$96
    	// Save the registers clobbered by the fast path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    			fdsym := funcdata[j]
    
    			// cmd/internal/obj optimistically populates ArgsPointerMaps and
    			// ArgInfo for assembly functions, hoping that the compiler will
    			// emit appropriate symbols from their Go stub declarations. If
    			// it didn't though, just ignore it.
    			//
    			// TODO(cherryyz): Fix arg map generation (see discussion on CL 523335).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

                getProjectPath() >> Path.path(":project")
            }
            getServices() >> Mock(ServiceRegistry)
            getTaskDependencyFactory() >> TestFiles.taskDependencyFactory()
            getObjects() >> Stub(ObjectFactory)
        } as ProjectInternal
        private final projectRegistry = Mock(ProjectRegistry)
        private container = new DefaultTaskContainerFactory(
            DirectInstantiator.INSTANCE,
            taskIdentityFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. cmd/erasure-multipart.go

    	if err != nil {
    		return result, toObjectErr(err, bucket, object, uploadID)
    	}
    
    	uploadIDPath := er.getUploadIDDir(bucket, object, uploadID)
    
    	// Populate the result stub.
    	result.Bucket = bucket
    	result.Object = object
    	result.UploadID = uploadID
    	result.MaxParts = maxParts
    	result.PartNumberMarker = partNumberMarker
    	result.UserDefined = cloneMSS(fi.Metadata)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    	IMAGE_REL_ARM64_REL32          = 0x0011
    
    	IMAGE_REL_BASED_HIGHLOW = 3
    	IMAGE_REL_BASED_DIR64   = 10
    )
    
    const (
    	PeMinimumTargetMajorVersion = 6
    	PeMinimumTargetMinorVersion = 1
    )
    
    // DOS stub that prints out
    // "This program cannot be run in DOS mode."
    // See IMAGE_DOS_HEADER in the Windows SDK for the format of the header used here.
    var dosstub = []uint8{
    	0x4d,
    	0x5a,
    	0x90,
    	0x00,
    	0x03,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.go

    		// up smashing the saved TOC pointer for its caller's caller.
    		//
    		// According to the ABI documentation there is a mechanism to avoid
    		// the TOC save that the PLT stub does (put a R_PPC64_TOCSAVE
    		// relocation on the nop after the call to morestack) but at the time
    		// of writing it is not supported at all by gold and my attempt to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcs/vcs.go

    }
    
    // vcsList lists the known version control systems
    var vcsList = []*Cmd{
    	vcsHg,
    	vcsGit,
    	vcsSvn,
    	vcsBzr,
    	vcsFossil,
    }
    
    // vcsMod is a stub for the "mod" scheme. It's returned by
    // repoRootForImportPathDynamic, but is otherwise not treated as a VCS command.
    var vcsMod = &Cmd{Name: "mod"}
    
    // vcsByCmd returns the version control system for the given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    	void _cgo_panic(void *a, int c) { }
    	void _cgo_reginit(void) { }
    
    The extra functions here are stubs to satisfy the references in the C
    code generated for gcc. The build process links this stub, along with
    _cgo_export.c and *.cgo2.c, into a dynamic executable and then lets
    cgo examine the executable. Cgo records the list of shared library
    references and resolved names and writes them into a new file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top