Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 724 for Restore (0.14 sec)

  1. src/syscall/mkpost.go

    		// for the other linux GOARCH settings.
    		// Hide them and restore later.
    		s = strings.Replace(s, "X__val", "MKPOSTFSIDVAL", 1)
    		s = strings.Replace(s, "X__ifi_pad", "MKPOSTIFIPAD", 1)
    		s = strings.Replace(s, "X_f", "MKPOSTSYSINFOTF", 1)
    
    		// Replace other unwanted fields with blank identifiers.
    		re = regexp.MustCompile("X_[A-Za-z0-9_]*")
    		s = re.ReplaceAllString(s, "_")
    
    		// Restore preserved fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/allocator.go

    	}
    	rangeString, data := snapshottable.Snapshot()
    	dst.Range = rangeString
    	dst.Data = data
    	return nil
    }
    
    // Restore restores the pool to the previously captured state. ErrMismatchedNetwork
    // is returned if the provided port range doesn't exactly match the previous range.
    func (r *PortAllocator) Restore(pr net.PortRange, data []byte) error {
    	if pr.String() != r.portRange.String() {
    		return ErrMismatchedNetwork
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    // which contain the "real" checkpoint keys into the TensorBundle SSTable.
    // They also contain the logic needed to take the restored tensors from
    // RestoreV2 and load them back into the "object" they came from via their
    // overridden "restore" method:
    // https://github.com/tensorflow/tensorflow/blob/ddc1bbad3dfd4a089eb96014f26cc16664b1b2f8/tensorflow/python/training/saving/saveable_object.py#L85
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/runtime/sys_solaris_amd64.s

    	get_tls(BX)
    	MOVQ	g(BX), BP
    	MOVQ	g_m(BP), BP
    	// restore libcall
    	LEAQ	m_libcall(BP), R11
    	MOVQ	72(SP), R10
    	MOVQ	R10, libcall_fn(R11)
    	MOVQ	80(SP), R10
    	MOVQ	R10, libcall_args(R11)
    	MOVQ	88(SP), R10
    	MOVQ	R10, libcall_n(R11)
    	MOVQ    152(SP), R10
    	MOVQ    R10, libcall_r1(R11)
    	MOVQ    160(SP), R10
    	MOVQ    R10, libcall_r2(R11)
    
    	// restore scratch
    	LEAQ	(m_mOS+mOS_scratch)(BP), R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/reflect/asm_riscv64.s

    	CALL	runtime·spillArgs(SB)
    	MOV	CTXT, 32(SP) // save CTXT > args of moveMakeFuncArgPtrs < LOCAL_REGARGS
    	MOV	CTXT, 8(SP)
    	MOV	X25, 16(SP)
    	CALL	·moveMakeFuncArgPtrs(SB)
    	MOV	32(SP), CTXT // restore CTXT
    
    	MOV	CTXT, 8(SP)
    	MOV	$argframe+0(FP), T0
    	MOV	T0, 16(SP)
    	MOV	ZERO, LOCAL_RETVALID(SP)
    	ADD	$LOCAL_RETVALID, SP, T1
    	MOV	T1, 24(SP)
    	ADD	$LOCAL_REGARGS, SP, T1
    	MOV	T1, 32(SP)
    	CALL	·callReflect(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 01:41:42 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. .github/workflows/maven.yml

          with:
            java-version: '17'
            distribution: 'temurin'
        - uses: actions/cache@v1
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Build with Maven
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 822 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue9400/asm_mipsx.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
    	ADDU	$(-1024*8), R29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 663 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue9400/asm_ppc64x.s

    	MOVW	$1, R3
    	SYNC
    	MOVW	R3, ·Baton(SB)
    
    	// Wait for setgid completion
    loop:
    	SYNC
    	MOVW	·Baton(SB), R3
    	CMP	R3, $0
    	// Hint that we're in a spin loop
    	OR	R1, R1, R1
    	BNE	loop
    	ISYNC
    
    	// Restore stack
    	SUB	$(1024 * 8), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 668 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue9400/asm_386.s

    	ADDL	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, (BX)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	(BX), AX
    	CMPL	AX, $0
    	JNE	loop
    
    	// Restore stack
    	SUBL	$(1024 * 8), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 575 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9400/asm_s390x.s

    	ADD	$(1024 * 8), R15
    
    	// Ask signaller to setgid
    	MOVD	$·Baton(SB), R5
    	MOVW	$1, 0(R5)
    
    	// Wait for setgid completion
    loop:
    	SYNC
    	MOVW	·Baton(SB), R3
    	CMPBNE	R3, $0, loop
    
    	// Restore stack
    	SUB	$(1024 * 8), R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 580 bytes
    - Viewed (0)
Back to top