Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 724 for Restore (0.26 sec)

  1. src/runtime/asm_amd64.s

    	MOVQ	$8, R12
    	BYTE	$0xcc
    	JMP	restore
    
    restore:
    	// Calls and failures resume here.
    	//
    	// Set R12 to 16 and invoke INT3. The debugger should restore
    	// all registers except RIP and RSP and resume execution.
    	MOVQ	$16, R12
    	BYTE	$0xcc
    	// We must not modify flags after this point.
    
    	// Restore pointer-containing registers, which may have been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/runtime/rt0_darwin_arm64.s

    	MOVD  _cgo_sys_thread_create(SB), R4
    	MOVD  $_rt0_arm64_darwin_lib_go(SB), R0
    	MOVD  $0, R1
    	SUB   $16, RSP		// reserve 16 bytes for sp-8 where fp may be saved.
    	BL    (R4)
    	ADD   $16, RSP
    
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(8)
    	RESTORE_F8_TO_F15(88)
    
    	RET
    
    TEXT _rt0_arm64_darwin_lib_go(SB),NOSPLIT,$0
    	MOVD  _rt0_arm64_darwin_lib_argc<>(SB), R0
    	MOVD  _rt0_arm64_darwin_lib_argv<>(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// nf_tables does not use locks
    	// legacy added locks in 1.6.2
    	return !v.Legacy || v.Version.LessThan(IptablesRestoreLocking)
    }
    
    var (
    	// IptablesRestoreLocking is the version where locking and -w is added to iptables-restore
    	IptablesRestoreLocking = utilversion.MustParseGeneric("1.6.2")
    	// IptablesLockfileEnv is the version where XTABLES_LOCKFILE is added to iptables.
    	IptablesLockfileEnv = utilversion.MustParseGeneric("1.8.6")
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/registry/core/service/allocator/interfaces.go

    	// called more than once.
    	Destroy()
    }
    
    // Snapshottable is an Interface that can be snapshotted and restored. Snapshottable
    // should be threadsafe.
    type Snapshottable interface {
    	Interface
    	Snapshot() (string, []byte)
    	Restore(string, []byte) error
    }
    
    type AllocatorFactory func(max int, rangeSpec string) (Interface, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 10:35:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. deploy_website.sh

    cp CONTRIBUTING.md docs/contribute/contributing.md
    
    # Build the site and push the new files up to GitHub
    python3 -m venv venv
    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
    git push --set-upstream origin gh-pages
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/app/fds.go

    //
    // Go already sets this (https://github.com/golang/go/issues/46279).
    // However, it will restore the original limit for subprocesses (Envoy):
    // https://github.com/golang/go/blob/f0d1195e13e06acdf8999188decc63306f9903f5/src/syscall/rlimit.go#L14.
    // By explicitly doing it ourselves, we get the limit passed through to Envoy.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/go/doc/testdata/example.go

    				fmt.Fprintf(stderr, "testing: copying pipe: %v\n", err)
    				os.Exit(1)
    			}
    			outC <- buf.String()
    		}()
    
    		// run example
    		t0 := time.Now()
    		eg.F()
    		dt := time.Since(t0)
    
    		// close pipe, restore stdout/stderr, get output
    		w.Close()
    		os.Stdout, os.Stderr = stdout, stderr
    		out := <-outC
    
    		// report any errors
    		tstr := fmt.Sprintf("(%.2f seconds)", dt.Seconds())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. cni/pkg/iptables/testdata/default.golden

    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15006 --tproxy-mark 0x111/0xfff
    iptables -t mangle -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    iptables -t nat -A ISTIO_OUTPUT ! -o lo -p udp -m udp --dport 53 -j REDIRECT --to-port 15053
    iptables -t nat -A ISTIO_OUTPUT -p tcp -m mark --mark 0x111/0xfff -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

        restore(mark)
        return hasShebangLine
    }
    
    
    private
    fun KotlinLexer.hasFileAnnotations(): Boolean {
    
        if (tokenType != KtTokens.AT) {
            return false
        }
    
        val mark = currentPosition
        advance()
    
        val hasFileAnnotation = tokenType == KtTokens.IDENTIFIER && tokenText == "file"
    
        restore(mark)
        return hasFileAnnotation
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/bitmap.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 IPNet range doesn't exactly match the previous range.
    func (r *Range) Restore(net *net.IPNet, data []byte) error {
    	if !net.IP.Equal(r.net.IP) || net.Mask.String() != r.net.Mask.String() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top