Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for need (0.06 sec)

  1. src/cmd/go/internal/work/exec.go

    			need &^= needCovMetaFile
    		}
    	}
    
    	// Load cached vet config, but only if that's all we have left
    	// (need == needVet, not testing just the one bit).
    	// If we are going to do a full build anyway,
    	// we're going to regenerate the files below anyway.
    	if need == needVet {
    		if err := b.loadCachedVet(a); err == nil {
    			need &^= needVet
    		}
    	}
    	if need == 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    // newmHandoff contains a list of m structures that need new OS threads.
    // This is used by newm in situations where newm itself can't safely
    // start an OS thread.
    var newmHandoff struct {
    	lock mutex
    
    	// newm points to a list of M structures that need new OS
    	// threads. The list is linked through m.schedlink.
    	newm muintptr
    
    	// waiting indicates that wake needs to be notified when an m
    	// is put on the list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    				st.err.errorUnresolved(ldr, s, rs)
    				continue
    			}
    		}
    
    		if rt >= objabi.ElfRelocOffset {
    			continue
    		}
    
    		// We need to be able to reference dynimport symbols when linking against
    		// shared libraries, and AIX, Darwin, OpenBSD and Solaris always need it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
      // be evaluated and attempting to partially evaluate those operands. It does
      // so by pushing the operands that need to be required on to the worklist
      // before enqueuing the operation requiering those values.
      std::vector<DimensionHandle> dims(dim_size, ic->UnknownDim());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// by other components that need to see the set of desired pods. Note that not all desired pods are
    	// running, and not all running pods are in the podManager - for instance, force deleting a pod
    	// from the apiserver will remove it from the podManager, but the pod may still be terminating and
    	// tracked by the podWorkers. Components that need to know the actual consumed resources of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    		// If the statement has been closed or already belongs to a
    		// transaction, we can't reuse it in this connection.
    		// Since tx.StmtContext should never need to be called with a
    		// Stmt already belonging to tx, we ignore this edge case and
    		// re-prepare the statement in this case. No need to add
    		// code-complexity for this.
    		stmt.mu.Unlock()
    		withLock(dc, func() {
    			si, err = ctxDriverPrepare(ctx, dc.ci, stmt.query)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	polyMul
    	JMP    openSSEFinalize
    
    // ----------------------------------------------------------------------------
    // Special optimization for the last 64 bytes of ciphertext
    openSSETail64:
    	// Need to decrypt up to 64 bytes - prepare single block
    	MOVO ·chacha20Constants<>(SB), A0; MOVO state1Store, B0; MOVO state2Store, C0; MOVO ctr3Store, D0; PADDL ·sseIncMask<>(SB), D0; MOVO D0, ctr0Store
    	XORQ itr2, itr2
    	MOVQ inl, itr1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) PodCouldHaveRunningContainers(pod *v1.Pod) bool {
    	if kl.podWorkers.CouldHaveRunningContainers(pod.UID) {
    		return true
    	}
    
    	// Check if pod might need to unprepare resources before termination
    	// NOTE: This is a temporary solution. This call is here to avoid changing
    	// status manager and its tests.
    	// TODO: extend PodDeletionSafetyProvider interface and implement it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // Build host side graph for the "If" node.
      // If then/else branch does not have outside compilation, we won't build host
      // graph for the branch. But here we need a host graph for both branches, so
      // we need to create a no-op host graph.
      if (!then_branch_has_outside_compilation) {
        std::unique_ptr<Graph> then_branch_host_graph(new Graph(fld));
        std::vector<string> then_branch_host_graphs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    	// HTTP request for testing when `objectLayer` is set to `nil`.
    	// There is no need to use an existing bucket and valid input for creating the request
    	// since the `objectLayer==nil`  check is performed before any other checks inside the handlers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top