Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 117 for ENTER (0.06 sec)

  1. pkg/kubelet/kubelet.go

    		semconv.K8SPodNameKey.String(pod.Name),
    		attribute.String("k8s.pod.update_type", updateType.String()),
    		semconv.K8SNamespaceNameKey.String(pod.Namespace),
    	))
    	klog.V(4).InfoS("SyncPod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer func() {
    		klog.V(4).InfoS("SyncPod exit", "pod", klog.KObj(pod), "podUID", pod.UID, "isTerminal", isTerminal)
    		otelSpan.End()
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        node_map[host_fbody->graph->source_node()] = (*host_graph)->source_node();
        node_map[host_fbody->graph->sink_node()] = (*host_graph)->sink_node();
        Status s;
        ReverseDFS(
            *host_fbody->graph, /*enter=*/nullptr,
            [&](const Node* n) {
              if (!s.ok()) {
                return;
              }
    
              Node* copy;
              if (node_map.find(n) != node_map.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. src/runtime/os_windows.go

    //
    //go:nosplit
    func osPreemptExtEnter(mp *m) {
    	for !atomic.Cas(&mp.preemptExtLock, 0, 1) {
    		// An asynchronous preemption is in progress. It's not
    		// safe to enter external code because it may call
    		// ExitProcess and deadlock with SuspendThread.
    		// Ideally we would do the preemption ourselves, but
    		// can't since there may be untyped syscall arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    // If preserve=true, don't return it to heap nor relink in mcentral lists;
    // caller takes care of it.
    func (sl *sweepLocked) sweep(preserve bool) bool {
    	// It's critical that we enter this function with preemption disabled,
    	// GC must not start while we are in the middle of this function.
    	gp := getg()
    	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
    		throw("mspan.sweep: m is not locked")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadelf/ldelf.go

    			sb.SetExternal(true)
    		}
    
    		sb.SetSize(int64(sect.size))
    		sb.SetAlign(int32(sect.align))
    		sb.SetReadOnly(sect.readOnlyMem)
    
    		sect.sym = sb.Sym()
    	}
    
    	// enter sub-symbols into symbol table.
    	// symbol 0 is the null symbol.
    	symbols := make([]loader.Sym, elfobj.nsymtab)
    
    	for i := 1; i < elfobj.nsymtab; i++ {
    		var elfsym ElfSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Terminating Continuous Build
    If Gradle is attached to an interactive input source, such as a terminal, the continuous build can be exited by pressing `CTRL-D` (On Microsoft Windows, it is required to also press `ENTER` or `RETURN` after `CTRL-D`).
    
    If Gradle is not attached to an interactive input source (e.g. is running as part of a script), the build process must be terminated (e.g. using the `kill` command or similar).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    ```
    
    </div>
    
    !!! info
        There are other formats and tools to define and install package dependencies.
    
    ### Create the **FastAPI** Code
    
    * Create an `app` directory and enter it.
    * Create an empty file `__init__.py`.
    * Create a `main.py` file with:
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateRaw(ctxt *obj.Link, ins *instruction) {
    	// Treat the raw value specially as a 32-bit unsigned integer.
    	// Nobody wants to enter negative machine code.
    	if ins.imm < 0 || 1<<32 <= ins.imm {
    		ctxt.Diag("%v: immediate %d in raw position cannot be larger than 32 bits", ins.as, ins.imm)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

    //
    // We first do an optimistic analysis and, if it does not converge, we then fall
    // back to a pessimistic analysis.  The optimistic analysis assigns the same
    // symbolic predicate to all the merge nodes whose preceding enter nodes have
    // the same frame name on the first iteration.  On the second iteration, if all
    // the merge nodes are pattern matched into the same AndRecurrence predicate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    		o.popTemp(t)
    
    	case ir.ORETURN:
    		n := n.(*ir.ReturnStmt)
    		o.exprList(n.Results)
    		o.out = append(o.out, n)
    
    	// Special: clean case temporaries in each block entry.
    	// Select must enter one of its blocks, so there is no
    	// need for a cleaning at the end.
    	// Doubly special: evaluation order for select is stricter
    	// than ordinary expressions. Even something like p.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top