Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for dying (0.07 sec)

  1. src/runtime/proc.go

    		if mp.curg != nil {
    			print(mp.curg.goid)
    		} else {
    			print("nil")
    		}
    		print(" mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, " locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=")
    		if lockedg := mp.lockedg.ptr(); lockedg != nil {
    			print(lockedg.goid)
    		} else {
    			print("nil")
    		}
    		print("\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *   <li>Return a {@code ClosingFuture}. To turn a {@link ListenableFuture} into a {@code
         *       ClosingFuture} call {@link #from(ListenableFuture)}.
         * </ul>
         *
         * <p>The same warnings about doing heavyweight operations within {@link
         * ClosingFuture#transformAsync(AsyncClosingFunction, Executor)} apply here.
         */
        public <V extends @Nullable Object> ClosingFuture<V> callAsync(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *   <li>Return a {@code ClosingFuture}. To turn a {@link ListenableFuture} into a {@code
         *       ClosingFuture} call {@link #from(ListenableFuture)}.
         * </ul>
         *
         * <p>The same warnings about doing heavyweight operations within {@link
         * ClosingFuture#transformAsync(AsyncClosingFunction, Executor)} apply here.
         */
        public <V extends @Nullable Object> ClosingFuture<V> callAsync(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    func (b *Builder) Do(ctx context.Context, root *Action) {
    	ctx, span := trace.StartSpan(ctx, "exec.Builder.Do ("+root.Mode+" "+root.Target+")")
    	defer span.Done()
    
    	if !b.IsCmdList {
    		// If we're doing real work, take time at the end to trim the cache.
    		c := cache.Default()
    		defer func() {
    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// Handle pod resize here instead of doing it in HandlePodUpdates because
    		// this conveniently retries any Deferred resize requests
    		// TODO(vinaykul,InPlacePodVerticalScaling): Investigate doing this in HandlePodUpdates + periodic SyncLoop scan
    		//     See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r663160060
    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. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    `score_threshold` are removed.  Bounding boxes are supplied as
    [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any
    diagonal pair of box corners and the coordinates can be provided as normalized
    (i.e., lying in the interval [0, 1]) or absolute.  Note that this algorithm
    is agnostic to where the origin is in the coordinate system and more
    generally is invariant to orthogonal transformations and translations
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		}
    		rinfo.Duration = time.Since(startTime)
    	}()
    
    	rinfo.ReplicationStatus = replication.Completed
    	rinfo.Size = size
    	rinfo.ReplicationAction = rAction
    	// use core client to avoid doing multipart on PUT
    	c := &minio.Core{Client: tgt.Client}
    
    	putOpts, err := putReplicationOpts(ctx, tgt.StorageClass, objInfo, 0)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    func (tv *Timeval) Nanoseconds() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // See mixInConventionAware() for how we do this for decorated types that do not implement IConventionAware manually
                    //
                    // Doing this for all types introduces a performance penalty for types that have Provider properties, even
                    // if they don't use convention mapping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    			}
    			p.Incomplete = true
    			p.Error.setPos(importPos)
    		}
    	}
    
    	// Checked on every import because the rules depend on the code doing the importing.
    	if perr := disallowInternal(ctx, srcDir, parent, parentPath, p, stk); perr != nil {
    		perr.setPos(importPos)
    		return p, perr
    	}
    	if mode&ResolveImport != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top