Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for needMin (0.14 sec)

  1. src/runtime/runtime2.go

    	goexit      bool
    	deferreturn bool
    }
    
    // savedOpenDeferState tracks the extra state from _panic that's
    // necessary for deferreturn to pick up where gopanic left off,
    // without needing to unwind the stack.
    type savedOpenDeferState struct {
    	retpc           uintptr
    	deferBitsOffset uintptr
    	slotsOffset     uintptr
    }
    
    // ancestorInfo records details of where a goroutine was started.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

     * href="https://www.javadoc.io/doc/com.github.ben-manes.caffeine/caffeine/latest/com.github.benmanes.caffeine/com/github/benmanes/caffeine/cache/CacheLoader.html">{@code
     * CacheLoader}</a>, etc.), so you can use Caffeine without needing to use any Guava types.
     * Caffeine's types are better than Guava's, especially for <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * invoke interruptTask on any subsequent futures.
             */
            callInterruptTask = false;
          }
          // We call this before the listeners in order to avoid needing to manage a separate stack data
          // structure for them.  Also, some implementations rely on this running prior to listeners
          // so that the cleanup work is visible to listeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

             * invoke interruptTask on any subsequent futures.
             */
            callInterruptTask = false;
          }
          // We call this before the listeners in order to avoid needing to manage a separate stack data
          // structure for them.  Also, some implementations rely on this running prior to listeners
          // so that the cleanup work is visible to listeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    For each executable binary produced, the `cpp` plugin provides an `install${binary.name}` task, which creates a development install of the executable, along with the shared libraries it requires. This allows you to run the executable without needing to install the shared libraries in their final locations.
    
    [[sec:finding_out_more_about_your_project]]
    == Finding out more about your project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    // pending commands are done (and runPending returns).
    // A test should call runPending if it wants to make sure that it is not
    // running in parallel with earlier tests, or if it has some other reason
    // for needing the earlier tests to be done.
    func (t *tester) runPending(nextTest *distTest) {
    	worklist := t.worklist
    	t.worklist = nil
    	for _, w := range worklist {
    		w.start = make(chan bool)
    		w.end = make(chan struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    package types
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"fmt"
    	"go/constant"
    	"internal/types/errors"
    	"sync"
    )
    
    // Object represents an ir.Node, but without needing to import cmd/compile/internal/ir,
    // which would cause an import cycle. The uses in other packages must type assert
    // values of type Object to ir.Node or a more specific type.
    type Object interface {
    	Pos() src.XPos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK: %[[q:.*]] = "tfl.quantize"(%[[dw]])
    // CHECK: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK: return %[[dq]], %[[dq]]
    }
    
    // Series of values needing requantization -- first the args then the results
    // of concatenation operations. concat(concat(arg2, arg0), concat(arg1, arg0)),
    // concat(concat(arg2, arg0), arg3)). arg0 should be requantized twice --
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// where the index is the index of the specific container in pod.Spec.EphemeralContainers.
    	EphemeralContainersToStart []int
    	// ContainersToUpdate keeps a list of containers needing resource update.
    	// Container resource update is applicable only for CPU and memory.
    	ContainersToUpdate map[v1.ResourceName][]containerToUpdateInfo
    	// UpdatePodResources is true if container(s) need resource update with restart
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Annotations: map[string]string{
    				constants.AmbientWaypointInboundBinding: "PROXY/15088",
    			},
    		},
    	})
    	s.addWaypoint(t, "1.2.3.4", "proxy-sandwich", constants.AllTraffic, true)
    	// TODO needing this check seems suspicious. We should really wait for up to 2 pod events.
    	assert.EventuallyEqual(t, func() int { return len(s.waypoints.List()) }, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top