Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 400 for late (0.38 sec)

  1. src/cmd/internal/obj/sym.go

    		// TODO: Find a better place and optimize to only sort TOC symbols.
    		sort.SliceStable(ctxt.Data, func(i, j int) bool {
    			return ctxt.Data[i].Name < ctxt.Data[j].Name
    		})
    	}
    
    	// Constant symbols are created late in the concurrent phase. Sort them
    	// to ensure a deterministic order.
    	sort.Slice(ctxt.constSyms, func(i, j int) bool {
    		return ctxt.constSyms[i].Name < ctxt.constSyms[j].Name
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertTrue(elapsedMillis < timelimitMillis);
      }
    
      /**
       * Await an interrupt, then clear the interrupt status. Similar to {@code
       * assertTrue(Thread.interrupted())} except that this version tolerates late interrupts.
       */
      private static void assertInterrupted() {
        try {
          /*
           * The sleep() will end immediately if we've already been interrupted or
           * wait patiently for the interrupt if not.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            }
        }
    
        private static boolean isPlatformForcedEdge(SelectorState selector) {
            return selector.isForce() && !selector.isSoftForce();
        }
    
        /**
         * Attaches errors late in the process. This is useful whenever we have built a graph, and that
         * validation is going to cause a failure (the error is not in the graph itself, but in the way
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Sqrt (Const64F [c])) && !math.IsNaN(math.Sqrt(c)) => (Const64F [math.Sqrt(c)])
    
    // for rewriting results of some late-expanded rewrites (below)
    (SelectN [0] (MakeResult x ___)) => x
    (SelectN [1] (MakeResult x y ___)) => y
    (SelectN [2] (MakeResult x y z ___)) => z
    
    // for late-expanded calls, recognize newobject and remove zeroing and nilchecks
    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    	forward(resp)
    }
    
    func (p *XdsProxy) forwardToTap(resp *discovery.DiscoveryResponse) {
    	select {
    	case p.tapResponseChannel <- resp:
    	default:
    		log.Infof("tap response %q arrived too late; discarding", resp.TypeUrl)
    	}
    }
    
    func forwardToEnvoy(con *ProxyConnection, resp *discovery.DiscoveryResponse) {
    	if !model.IsEnvoyType(resp.TypeUrl) && resp.TypeUrl != model.WorkloadType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    			continue
    		}
    
    		switch ev.Kind() {
    		case EventRangeActive:
    			if seenSync {
    				// If we've seen a sync, then we can be sure we're not finding out about
    				// something late; we have complete information after that point, and these
    				// active events will just be redundant.
    				break
    			}
    			// This range is active back to the start of the trace. We're failing to account
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    	// The check can be enabled immediately when deploying a driver.
    	// In that case, provisioning new volumes with late binding
    	// will pause until the driver deployment has published
    	// some suitable CSIStorageCapacity object.
    	//
    	// Alternatively, the driver can be deployed with the field
    	// unset or false and it can be flipped later when storage
    	// capacity information has been published.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	Std           bool // is standard library package
    
    	// state for writing objects
    	Text []*LSym
    	Data []*LSym
    
    	// Constant symbols (e.g. $i64.*) are data symbols created late
    	// in the concurrent phase. To ensure a deterministic order, we
    	// add them to a separate list, sort at the end, and append it
    	// to Data.
    	constSyms []*LSym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    
    	// NodeName is set by the scheduler after the pod is created
    	// https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#late-initialization
    	node := c.nodes.Get(pod.Spec.NodeName, "")
    	if node == nil {
    		if pod.Spec.NodeName != "" {
    			log.Warnf("unable to get node %q for pod %q/%q", pod.Spec.NodeName, pod.Namespace, pod.Name)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    //
    // It must only be called once no goroutine is sleeping on the
    // timer *and* nothing else will call wake concurrently.
    func (s *wakeableSleep) close() {
    	// Set wakeup to nil so that a late timer ends up being a no-op.
    	lock(&s.lock)
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&s.lock))
    	}
    	wakeup := s.wakeup
    	s.wakeup = nil
    
    	// Close the channel.
    	close(wakeup)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top