Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 562 for refStore (0.19 sec)

  1. cluster/images/etcd/migrate/migrate_client.go

    	}
    	return e.runEtcdctlCommand(version,
    		"--endpoints", e.endpoint(),
    		"snapshot", "save", snapshotFile,
    	)
    }
    
    // Restore restores a given snapshotFile into the data directory specified this clients config.
    func (e *CombinedEtcdClient) Restore(version *EtcdVersion, snapshotFile string) error {
    	// We cannot use etcd/clientv3 to make this call. It is implemented in the etcdctl client code.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9400/asm_arm64.s

    	STLXRW	R1, (R0), R3
    	CBNZ	R3, storeloop
    
    	// Wait for setgid completion
    	MOVW	$0, R1
    	MOVW	$0, R2
    loop:
    	LDAXRW	(R0), R3
    	CMPW	R1, R3
    	BNE	loop
    	STLXRW	R2, (R0), R3
    	CBNZ	R3, loop
    
    	// Restore stack
    	SUB	$(1024 * 8), RSP
    
    	MOVD	R9, R30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 760 bytes
    - Viewed (0)
  3. src/runtime/env_test.go

    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"runtime"
    	"syscall"
    	"testing"
    )
    
    func TestFixedGOROOT(t *testing.T) {
    	// Restore both the real GOROOT environment variable, and runtime's copies:
    	if orig, ok := syscall.Getenv("GOROOT"); ok {
    		defer syscall.Setenv("GOROOT", orig)
    	} else {
    		defer syscall.Unsetenv("GOROOT")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 19 11:28:19 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

            distribution: 'temurin'
        - name: Cache Maven packages
          uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
            restore-keys: ${{ runner.os }}-m2
        - name: Build with Maven
          run: mvn -B package --file pom.xml
    
        - name: Perform CodeQL Analysis
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. .github/workflows/maven.yml

          with:
            java-version: '17'
            distribution: 'temurin'
        - uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_ppc64_linker_funcs.txt

    # Tests that the linker implements the PPC64 ELFv2 ABI
    # register save and restore functions as defined in
    # section 2.3.3.1 of the PPC64 ELFv2 ABI when linking
    # external objects most likely compiled with gcc's
    # -Os option.
    #
    # Verifies golang.org/issue/52366 for linux/ppc64le
    [!GOOS:linux] skip
    [!compiler:gc] skip
    [!cgo] skip
    [!GOARCH:ppc64le] skip
    
    go build -ldflags='-linkmode=internal'
    exec ./abitest
    stdout success
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. pkg/scheduler/util/assumecache/assume_cache.go

    	return nil
    }
    
    // Restore the informer cache's version of the object.
    func (c *AssumeCache) Restore(objName string) {
    	c.rwMutex.Lock()
    	defer c.rwMutex.Unlock()
    
    	objInfo, err := c.getObjInfo(objName)
    	if err != nil {
    		// This could be expected if object got deleted
    		c.logger.V(5).Info("Restore object", "description", c.description, "cacheKey", objName, "err", err)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/runtime/export_debug_arm64_test.go

    // case 1
    func (h *debugCallHandler) debugCallReturn(ctxt *sigctxt) {
    	sp := ctxt.sp()
    	memmove(h.argp, unsafe.Pointer(uintptr(sp)+8), h.argSize)
    	if h.regArgs != nil {
    		loadRegArgs(h.regArgs, ctxt.regs())
    	}
    	// Restore the old lr from *sp
    	olr := *(*uint64)(unsafe.Pointer(uintptr(sp)))
    	ctxt.set_lr(olr)
    	pc := ctxt.pc()
    	ctxt.set_pc(pc + 4) // step to next instruction
    }
    
    // case 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  9. src/runtime/export_debug_ppc64le_test.go

    // case 1
    func (h *debugCallHandler) debugCallReturn(ctxt *sigctxt) {
    	sp := ctxt.sp()
    	memmove(h.argp, unsafe.Pointer(uintptr(sp)+32), h.argSize)
    	if h.regArgs != nil {
    		loadRegArgs(h.regArgs, ctxt.cregs())
    	}
    	// Restore the old lr from *sp
    	olr := *(*uint64)(unsafe.Pointer(uintptr(sp)))
    	ctxt.set_link(olr)
    	pc := ctxt.pc()
    	ctxt.set_pc(pc + 4) // step to next instruction
    }
    
    // case 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9400/asm_mips64x.s

    	MOVW	$1, R1
    	SYNC
    	MOVW	R1, ·Baton(SB)
    	SYNC
    
    	// Wait for setgid completion
    loop:
    	SYNC
    	MOVW	·Baton(SB), R1
    	OR	R2, R2, R2	// hint that we're in a spin loop
    	BNE	R1, loop
    	SYNC
    
    	// Restore stack
    	ADDV	$(-1024*8), R29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 691 bytes
    - Viewed (0)
Back to top