Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 492 for refStore (0.27 sec)

  1. tools/istio-iptables/pkg/README.md

    - iptables
    - iptables-save
    - iptables-restore
    
    But with the kernel legacy/nft split, there are parallel binaries for each of those, and again for ipv6 tables, so the actual potential binary set on any given linux machine can be some combination of:
    
    - iptables-legacy
    - iptables-nft
    - ip6tables
    - iptables-legacy-save
    - iptables-nft-save
    - iptables-legacy-restore
    - iptables-nft-restore
    - ip6tables-legacy
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            renderer.addStandardOutputListener(listener)
            renderer.configure(LogLevel.INFO)
            def snapshot = renderer.snapshot()
            renderer.configure(LogLevel.DEBUG)
    
            when:
            renderer.restore(snapshot)
            renderer.onOutput(event('info', LogLevel.INFO))
            renderer.onOutput(event('debug', LogLevel.DEBUG))
    
            then:
            listener.value.readLines() == ['info']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_ppc64x.s

    	JMP	finish
    
    nosaveg:
    	BL	(CTR)	// Call from VDSO
    
    finish:
    	MOVD	$0, R0		// Restore R0
    	MOVD	0(R1), R3	// sec
    	MOVD	8(R1), R5	// nsec
    	MOVD	R15, R1		// Restore 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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. pkg/scheduler/util/assumecache/assume_cache_test.go

    	newObj := makeObj("pvc1", "5", "")
    
    	// Restore object that doesn't exist
    	cache.Restore("nothing")
    
    	// Add old object to cache.
    	informer.add(oldObj)
    	verify(ktesting.WithStep(tCtx, "after initial update"), cache, oldObj.GetName(), oldObj, oldObj)
    
    	// Restore object.
    	cache.Restore(oldObj.GetName())
    	verify(ktesting.WithStep(tCtx, "after initial Restore"), cache, oldObj.GetName(), oldObj, oldObj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue59367.go

    	_ = b[1]            // bounds check
    	x := *p             // load a byte
    	y := uint16(x)      // zero extend to 16 bits
    	b[0] = byte(y >> 8) // compute ROLW
    	b[1] = byte(y)
    	nop()               // spill/restore ROLW
    	b[0] = byte(y >> 8) // use ROLW
    	b[1] = byte(y)
    }
    
    //go:noinline
    func f32(p *uint8, b []byte) {
    	_ = b[3]             // bounds check
    	x := *p              // load a byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pkg/util/iptables/iptables.go

    	SaveInto(table Table, buffer *bytes.Buffer) error
    	// Restore runs `iptables-restore` passing data through []byte.
    	// table is the Table to restore
    	// data should be formatted like the output of SaveInto()
    	// flush sets the presence of the "--noflush" flag. see: FlushFlag
    	// counters sets the "--counters" flag. see: RestoreCountersFlag
    	Restore(table Table, data []byte, flush FlushFlag, counters RestoreCountersFlag) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_s390x.S

    	std     %f10, 16(%r15)
    	std     %f11, 24(%r15)
    	std     %f12, 32(%r15)
    	std     %f13, 40(%r15)
    	std     %f14, 48(%r15)
    	std     %f15, 56(%r15)
    
    	/* restore g pointer */
    	lgr     %r13, %r3
    
    	/* call fn */
    	basr    %r14, %r2
    
    	/* restore floating point registers */
    	ld      %f8, 0(%r15)
    	ld      %f9, 8(%r15)
    	ld      %f10, 16(%r15)
    	ld      %f11, 24(%r15)
    	ld      %f12, 32(%r15)
    	ld      %f13, 40(%r15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/java/source/JavaElementTypeSourceWithSmartPointer.kt

        override val type: TYPE
            get() {
                val type = pointer.type
                    ?: error("Cannot restore a PsiType from $pointer")
    
                @Suppress("UNCHECKED_CAST")
                return type as TYPE
            }
    
        override fun toString(): String {
            return pointer.type?.toString() ?: "Cannot restore a PsiType from $pointer"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 31 13:01:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	testCases := []struct {
    		description       string
    		checkpointContent string
    		expectedError     string
    		expectedState     *stateMemory
    	}{
    		{
    			"Restore non-existing checkpoint",
    			"",
    			"",
    			&stateMemory{},
    		},
    		{
    			"Restore valid checkpoint",
    			`{
    				"policyName":"static",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/rt0_linux_loong64.s

    	BEQ	R19, nocgo
    	MOVV	$_rt0_loong64_linux_lib_go(SB), R4
    	MOVV	$0, R5
    	JAL	(R19)
    	JMP	restore
    
    nocgo:
    	MOVV	$0x800000, R4                     // stacksize = 8192KB
    	MOVV	$_rt0_loong64_linux_lib_go(SB), R5
    	MOVV	R4, 8(R3)
    	MOVV	R5, 16(R3)
    	MOVV	$runtime·newosproc0(SB), R19
    	JAL	(R19)
    
    restore:
    	// Restore callee-save registers.
    	RESTORE_R22_TO_R31(3*8)
    	RESTORE_F24_TO_F31(13*8)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:43 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top