Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for mainAlt (0.3 sec)

  1. pilot/pkg/model/push_context.go

    	}
    }
    
    // AddPublicServices adds the services to context public services - mainly used in tests.
    func (ps *PushContext) AddPublicServices(services []*Service) {
    	ps.ServiceIndex.public = append(ps.ServiceIndex.public, services...)
    }
    
    // AddServiceInstances adds instances to the context service instances - mainly used in tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// is always guaranteed to be >= min and < max (converted to heap addresses).
    	//
    	// searchAddrBg is increased only on each new generation and is mainly used by the
    	// background scavenger and heap-growth scavenging. searchAddrForce is increased continuously
    	// as memory gets freed and is mainly used by eager memory reclaim such as debug.FreeOSMemory
    	// and scavenging to maintain the memory limit.
    	searchAddrBg    atomicOffAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    }
    
    // FindGoWork returns the name of the go.work file for this command,
    // or the empty string if there isn't one.
    // Most code should use Init and Enabled rather than use this directly.
    // It is exported mainly for Go toolchain switching, which must process
    // the go.work very early at startup.
    func FindGoWork(wd string) string {
    	if RootMode == NoRoot {
    		return ""
    	}
    
    	switch gowork := cfg.Getenv("GOWORK"); gowork {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
      private static <I extends Iterator<?>> Iterator<I> consumingForArray(@Nullable I... elements) {
        return new UnmodifiableIterator<I>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
      private static <I extends Iterator<?>> Iterator<I> consumingForArray(@Nullable I... elements) {
        return new UnmodifiableIterator<I>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		c.groupResource,
    		identifier,
    	)
    
    	// note that c.waitUntilWatchCacheFreshAndForceAllEvents must be called without
    	// the c.watchCache.RLock held otherwise we are at risk of a deadlock
    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // 2) Is only used by binary op like AddOp, SubOp, MulOp or DivOp.
    def HasOneUseOrUsedByOnlyBinaryOps : Constraint<CPred<
      "TFL::HasOneUseOrUsedByOnlyBinaryOps($0)">>;
    
    // Pattern for skipping Tile if it is mainly for broadcasting and the
    // Op is already supporting broadcasting.
    multiclass FuseTileBroadcastIntoFollowingBinary<Op BinaryOp> {
      def FuseTileBroadcastToBinaryOp1#BinaryOp : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": {
          "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    			return true
    		}
    	}
    }
    
    // needIdleMarkWorker is a hint as to whether another idle mark worker is needed.
    //
    // The caller must still call addIdleMarkWorker to become one. This is mainly
    // useful for a quick check before an expensive operation.
    //
    // nosplit because it may be called without a P.
    //
    //go:nosplit
    func (c *gcControllerState) needIdleMarkWorker() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	// queueingHintMap is keyed with profile name, valued with registered queueing hint functions.
    	queueingHintMap QueueingHintMapPerProfile
    
    	// closed indicates that the queue is closed.
    	// It is mainly used to let Pop() exit its control loop while waiting for an item.
    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top