Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Dumps (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

        "tf.DumpTensor"(%4) {device = "", enabled = true, file_name = "quantized_tensor_data.pb", func_name = "conv_with_dump", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"} : (tensor<*xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // If a component level is not set, then the global "logLevel" will be used. If left empty, "misc:error" is used.
      string componentLogLevel = 6;
    
      // Enables core dumps for newly injected sidecars.
      //
      // If set, newly injected sidecars will have core dumps enabled.
      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    type unwinder struct {
    	// frame is the current physical stack frame, or all 0s if
    	// there is no frame.
    	frame stkframe
    
    	// g is the G who's stack is being unwound. If the
    	// unwindJumpStack flag is set and the unwinder jumps stacks,
    	// this will be different from the initial G.
    	g guintptr
    
    	// cgoCtxt is the index into g.cgoCtxt of the next frame on the cgo stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    	// some benefit on platforms with inclusive shared caches.
    	sys.Prefetch(obj)
    	// Queue the obj for scanning.
    	if !gcw.putFast(obj) {
    		gcw.put(obj)
    	}
    }
    
    // gcDumpObject dumps the contents of obj for debugging and marks the
    // field at byte offset off in obj.
    func gcDumpObject(label string, obj, off uintptr) {
    	s := spanOf(obj)
    	print(label, "=", hex(obj))
    	if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    		pc := getcallerpc()
    		systemstack(func() {
    			g0 := getg()
    			// Force traceback=1 to override GOTRACEBACK setting,
    			// so that Stack's results are consistent.
    			// GOTRACEBACK is only about crash dumps.
    			g0.m.traceback = 1
    			g0.writebuf = buf[0:0:len(buf)]
    			goroutineheader(gp)
    			traceback(pc, sp, 0, gp)
    			if all {
    				tracebackothers(gp)
    			}
    			g0.m.traceback = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	}
    }
    
    // nftablesBaseChains lists our "base chains"; those that are directly connected to the
    // netfilter hooks (e.g., "postrouting", "input", etc.), as opposed to "regular" chains,
    // which are only run when a rule jumps to them. See
    // https://wiki.nftables.org/wiki-nftables/index.php/Configuring_chains.
    //
    // These are set up from setupNFTables() and then not directly referenced by
    // syncProxyRules().
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    			}
    			args = append(args, "-j", string(jump.dstChain))
    			if _, err := proxier.iptables.EnsureRule(utiliptables.Prepend, jump.table, jump.srcChain, args...); err != nil {
    				proxier.logger.Error(err, "Failed to ensure chain jumps", "table", jump.table, "srcChain", jump.srcChain, "dstChain", jump.dstChain)
    				return
    			}
    		}
    
    		// ensure the nfacct counters
    		if proxier.nfacct != nil {
    			for name := range proxier.nfAcctCounters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    		//   ADD $(autosize+FIXED_FRAME), SP, X7
    		//   BNE X6, X7, end
    		//   ADD $FIXED_FRAME, SP, X6
    		//   MOV X6, panic_argp(X5)
    		//   JMP end
    		//
    		// The NOP is needed to give the jumps somewhere to land.
    
    		ldpanic := obj.Appendp(prologue, newprog)
    
    		ldpanic.As = AMOV
    		ldpanic.From = obj.Addr{Type: obj.TYPE_MEM, Reg: REGG, Offset: 4 * int64(ctxt.Arch.PtrSize)} // G.panic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    	ssa.BlockPPC64LE: {ppc64.ABLE, ppc64.ABGT, false, false},
    	ssa.BlockPPC64GT: {ppc64.ABGT, ppc64.ABLE, false, false},
    
    	// TODO: need to work FP comparisons into block jumps
    	ssa.BlockPPC64FLT: {ppc64.ABLT, ppc64.ABGE, false, false},
    	ssa.BlockPPC64FGE: {ppc64.ABGT, ppc64.ABLT, true, true}, // GE = GT or EQ; !GE = LT or UN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    		if _, err := proxier.iptables.EnsureRule(utiliptables.Prepend, jc.table, jc.from, args...); err != nil {
    			proxier.logger.Error(err, "Failed to ensure chain jumps", "table", jc.table, "srcChain", jc.from, "dstChain", jc.to)
    		}
    	}
    
    }
    
    func (proxier *Proxier) syncService(svcName string, vs *utilipvs.VirtualServer, bindAddr bool, alreadyBoundAddrs sets.Set[string]) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top