Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 220 for Sysname (0.16 sec)

  1. src/plugin/plugin_stubs.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (!linux && !freebsd && !darwin) || !cgo
    
    package plugin
    
    import "errors"
    
    func lookup(p *Plugin, symName string) (Symbol, error) {
    	return nil, errors.New("plugin: not implemented")
    }
    
    func open(name string) (*Plugin, error) {
    	return nil, errors.New("plugin: not implemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 451 bytes
    - Viewed (0)
  2. src/internal/testpty/pty_cgo.go

    		C.close(m)
    		return nil, "", ptyError("grantpt", err)
    	}
    	if res, err := C.unlockpt(m); res < 0 {
    		C.close(m)
    		return nil, "", ptyError("unlockpt", err)
    	}
    	processTTY = C.GoString(C.ptsname(m))
    	return os.NewFile(uintptr(m), "pty"), processTTY, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 18:38:54 UTC 2023
    - 840 bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MerkleDirectorySnapshotBuilder.java

     * For the hash to be reproducible, the children must be sorted in a consistent order.
     * The implementation uses {@link FileSystemLocationSnapshot#BY_NAME} ordering.
     * If you already provide the children in sorted order, use {@link #noSortingRequired()} to avoid the overhead of sorting again.
     */
    public class MerkleDirectorySnapshotBuilder implements DirectorySnapshotBuilder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/s390x/asm.go

    		if targType == sym.SDYNIMPORT {
    			ldr.Errorf(s, "unexpected R_390_PCnn relocation for dynamic symbol %s", ldr.SymName(targ))
    		}
    		if targType == 0 || targType == sym.SXREF {
    			ldr.Errorf(s, "unknown symbol %s in pcrel", ldr.SymName(targ))
    		}
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_PCREL)
    		su.SetRelocAdd(rIdx, r.Add()+int64(r.Siz()))
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    func GNUSyntax(inst Inst, pc uint64, symname SymLookup) string {
    	// Rewrite instruction to mimic GNU peculiarities.
    	// Note that inst has been passed by value and contains
    	// no pointers, so any changes we make here are local
    	// and will not propagate back out to the caller.
    
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	// Adjust opcode [sic].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/projects/StageProject.kt

            val topLevelFunctionalTests = topLevelCoverage
                .map { FunctionalTest(model, it.asConfigurationId(model), it.asName(), it.asName(), it, stage = stage) }
            topLevelFunctionalTests.forEach(this::buildType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/inittask.go

    	}
    }
    
    // inittaskSym builds a symbol containing pointers to all the inittasks
    // that need to be run, given a list of root inittask symbols.
    func (ctxt *Link) inittaskSym(rootNames []string, symName string) loader.Sym {
    	ldr := ctxt.loader
    	var roots []loader.Sym
    	for _, n := range rootNames {
    		p := ldr.Lookup(n, 0)
    		if p != 0 {
    			roots = append(roots, p)
    		}
    	}
    	if len(roots) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    					ldr.Errorf(s, "reloc %s to non-coff symbol %s (outer=%s) %d %d", r.Type(), ldr.SymName(r.Sym()), ldr.SymName(rr.Xsym), ldr.SymType(r.Sym()), ldr.SymDynid(rr.Xsym))
    				}
    				if !thearch.Xcoffreloc1(ctxt.Arch, ctxt.Out, ldr, s, rr, int64(uint64(ldr.SymValue(s)+int64(r.Off()))-base)) {
    					ldr.Errorf(s, "unsupported obj reloc %d(%s)/%d to %s", r.Type(), r.Type(), r.Siz(), ldr.SymName(r.Sym()))
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. docs/zh/docs/advanced/settings.md

        <div class="termy">
    
        ```console
        // 您可以创建一个名为 MY_NAME 的环境变量
        $ export MY_NAME="Wade Wilson"
    
        // 然后您可以与其他程序一起使用它,例如
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // 创建一个名为 MY_NAME 的环境变量
        $ $Env:MY_NAME = "Wade Wilson"
    
        // 与其他程序一起使用它,例如
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/FunctionalTestProject.kt

        functionalTestBucketProvider: FunctionalTestBucketProvider,
        val testCoverage: TestCoverage,
        val stage: Stage
    ) : Project({
        this.id(testCoverage.asId(model))
        this.name = testCoverage.asName()
    }) {
        val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage)
        init {
            functionalTests.forEach(this::buildType)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 805 bytes
    - Viewed (0)
Back to top