Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 293 for refStore (0.43 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

            synchronized (lock) {
                // Currently only snapshot the console output listener. Should snapshot all output listeners, and cleanup in restore()
                return new SnapshotImpl(logLevel.get(), console);
            }
        }
    
        @Override
        public void restore(Snapshot state) {
            synchronized (lock) {
                SnapshotImpl snapshot = (SnapshotImpl) state;
                if (snapshot.logLevel != logLevel.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/restore_function_name.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h"
    
    //===----------------------------------------------------------------------===//
    // The stablehlo-restore-function-name Pass.
    //===----------------------------------------------------------------------===//
    
    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_RESTOREFUNCTIONNAMEPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tests/integration/ambient/untaint/main_test.go

    		})
    		_, err := nodeC.Update(context.TODO(), &node, metav1.UpdateOptions{})
    		if err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // Untaint nodes if the test failed, so we restore the cluster to a usable state.
    func untaintNodes(t resource.Context) {
    	nodeC := t.Clusters().Default().
    		Kube().CoreV1().Nodes()
    	nodes, err := nodeC.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtPsiBasedSymbolPointer.kt

                when (psi) {
                    is KtDeclaration -> psi.getSymbol()
                    is KtFile -> psi.getFileSymbol()
                    else -> {
                        error("Unexpected declaration to restore: ${psi::class}, text:\n ${psi.text}")
                    }
                }
            }
    
            if (!expectedClass.isInstance(symbol)) return null
    
            @Suppress("UNCHECKED_CAST")
            return symbol as S
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-tproxy.golden

    iptables -t mangle -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --gid-owner 1337 -j MARK --set-mark 1338
    iptables -t mangle -A OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    iptables -t mangle -I ISTIO_INBOUND 1 -p tcp -m mark --mark 1337 -j RETURN
    iptables -t mangle -I ISTIO_INBOUND 2 -p tcp -s 127.0.0.6/32 -i lo -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/runtime/race_ppc64le.s

    	MOVD    runtime·tls_g(SB), R10
    	MOVD    0(R10), g
    	MOVD    g_racectx(g), R3        // goroutine context
    	BL	racecall<>(SB)
    	MOVD	R15, R8	// restore the original function
    	MOVD	R17, R6 // restore arg list addr
    	// Call the atomic function.
    	// racecall will call LLVM race code which might clobber r30 (g)
    	MOVD	runtime·tls_g(SB), R10
    	MOVD	0(R10), g
    
    	MOVD	g_racectx(g), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    		return nil
    	}
    
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	// If we're dry-running, download certs to tmp dir, and defer to restore to the path originally specified by the user
    	certsDir := cfg.CertificatesDir
    	cfg.CertificatesDir = data.CertificateWriteDir()
    	defer func() { cfg.CertificatesDir = certsDir }()
    
    	client, err := bootstrapClient(data)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    	su := ldr.MakeSymbolUpdater(s)
    	su.SetRelocSym(ri, stub.Sym())
    
    	// A type 1 call must restore the toc pointer after the call.
    	if stubType == 1 {
    		su.MakeWritable()
    		p := su.Data()
    
    		// Check for a toc pointer restore slot (a nop), and rewrite to restore the toc pointer.
    		var nop uint32
    		if len(p) >= int(r.Off()+8) {
    			nop = ctxt.Arch.ByteOrder.Uint32(p[r.Off()+4:])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/runtime/rt0_linux_ppc64le.s

    	MOVD	R12, 8+FIXED_FRAME(R1)
    	MOVD	$_rt0_ppc64le_linux_lib_go(SB), R12
    	MOVD	R12, 16+FIXED_FRAME(R1)
    	MOVD	$runtime·newosproc0(SB),R12
    	MOVD	R12, CTR
    	BL	(CTR)
    
    done:
    	// Restore and return to ELFv2 caller.
    	UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(16)
    	RET
    
    TEXT _rt0_ppc64le_linux_lib_go(SB),NOSPLIT,$0
    	MOVD	_rt0_ppc64le_linux_lib_argc<>(SB), R3
    	MOVD	_rt0_ppc64le_linux_lib_argv<>(SB), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation.go

    	iptablesLegacyBin   = "iptables-legacy"
    	ip6tablesBin        = "ip6tables"
    	ip6tablesNftBin     = "ip6tables-nft"
    	ip6tablesLegacyBin  = "ip6tables-legacy"
    	iptablesRestoreBin  = "iptables-restore"
    	ip6tablesRestoreBin = "ip6tables-restore"
    )
    
    // It is not sufficient to check for the presence of one binary or the other in $PATH -
    // we must choose a binary that is
    // 1. Available in our $PATH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top