Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 724 for Restore (0.18 sec)

  1. src/cmd/go/testdata/script/cover_main_import_path.txt

    go build -cover -o $WORK/prog.exe .
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/prog.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Report percent lines covered.
    go tool covdata percent -i=$WORK/covdata
    stdout '\s*mainwithtest\s+coverage:'
    ! stdout 'main\s+coverage:'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. test/codegen/issue61356.go

    // asmcheck
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure this code doesn't generate spill/restore.
    
    package codegen
    
    func pack20(in *[20]uint64) uint64 {
    	var out uint64
    	out |= 4
    	// amd64:-`.*SP.*`
    	out |= in[0] << 4
    	// amd64:-`.*SP.*`
    	out |= in[1] << 7
    	// amd64:-`.*SP.*`
    	out |= in[2] << 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/asm_386.s

    	MOVL	$_rt0_386_lib_go(SB), BX
    	MOVL	BX, 0(SP)
    	MOVL	$0, 4(SP)
    
    	CALL	AX
    
    	MOVL	BP, SP
    
    	JMP	restore
    
    nocgo:
    	MOVL	$0x800000, 0(SP)                    // stacksize = 8192KB
    	MOVL	$_rt0_386_lib_go(SB), AX
    	MOVL	AX, 4(SP)                           // fn
    	CALL	runtime·newosproc0(SB)
    
    restore:
    	ADDL	$8, SP
    	POPL	DI
    	POPL	SI
    	POPL	BX
    	POPL	BP
    	RET
    
    // _rt0_386_lib_go initializes the Go runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Lexer.kt

                return null; // ignoring file annotation
            }
    
            restore(startIndex)
            if (let(kotlinGrammar.annotation) is ParserResult.Success<*>) {
                return startIndex.offset until currentPosition.offset
            }
    
            restore(startIndex)
            advance()
    
            return null
        }
    
        KotlinLexer().apply {
            start(script)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. pkg/registry/core/service/allocator/storage/storage_test.go

    		t.Fatal(err)
    	}
    	if allocation.Range != "rangeSpecValue" {
    		t.Errorf("unexpected stored Range: %s", allocation.Range)
    	}
    	if err := other.Restore("rangeSpecValue", allocation.Data); err != nil {
    		t.Fatal(err)
    	}
    	if !other.Has(2) {
    		t.Fatalf("could not restore allocated IP: %#v", other)
    	}
    
    	other = allocator.NewAllocationMap(100, "rangeSpecValue")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 01 20:54:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_arm.s

    	MOVW	$0, R8
    	MOVW	R8, (R7) // clear g slot
    
    	JMP	finish
    
    nosaveg:
    	BL	(R4)
    
    finish:
    	MOVW	R5, R13		// Restore real SP
    	// Restore vdsoPC, vdsoSP
    	// We don't worry about being signaled between the two stores.
    	// If we are not in a signal handler, we'll restore vdsoSP to 0,
    	// and no one will care about vdsoPC. If we are in a signal handler,
    	// we cannot receive another signal.
    	MOVW	8(R13), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/math/big/arith_s390x.s

    	BLT v1 // if n < 0 goto v1
    
    U1:  // n >= 0
    	// regular loop body unrolled 4x
    	MOVD 0(R8)(R10*1), R5
    	MOVD 8(R8)(R10*1), R6
    	MOVD 16(R8)(R10*1), R7
    	MOVD 24(R8)(R10*1), R1
    	ADDC R4, R4             // restore CF
    	MOVD 0(R9)(R10*1), R11
    	ADDE R11, R5
    	MOVD 8(R9)(R10*1), R11
    	ADDE R11, R6
    	MOVD 16(R9)(R10*1), R11
    	ADDE R11, R7
    	MOVD 24(R9)(R10*1), R11
    	ADDE R11, R1
    	MOVD R0, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. src/math/floor_riscv64.s

    	FLTD	F1, F2, X6;	\
    	/* Inf should keep same signed with x then return */;	\
    	BEQZ	X6, 3(PC); \
    	FCVTLD.MODE	F0, X6;	\
    	FCVTDL	X6, F1;		\
    	/* rounding will drop signed bit in RISCV, restore it */; \
    	FSGNJD	F0, F1, F0;	\
    	MOVD	F0, ret+8(FP); 	\
    	RET
    
    // func archFloor(x float64) float64
    ROUNDFN(·archFloor, RDN)
    
    // func archCeil(x float64) float64
    ROUNDFN(·archCeil, RUP)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 08:34:12 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/ops/restore_ops.h

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace internal {
    
    // TODO(bmzhao): Add a function to restore multiple tensors in one call.
    
    // Restores a single non-partioned tensorhandle of dtype `dtype`, using
    // checkpoint at `prefix`, with a value stored in `checkpoint_key`.
    Status SingleRestore(ImmediateExecutionContext* ctx, const std::string& prefix,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    	// CLI: -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    	//
    	// DESC: Propagate/restore connmark (if we had one) for outbound
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.MANGLE,
    		"-m", "connmark",
    		"--mark", inpodTproxyMark,
    		"-j", "CONNMARK",
    		"--restore-mark",
    		"--nfmask", fmt.Sprintf("0x%x", InpodRestoreMask),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top