Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 203 for DEAD (0.1 sec)

  1. src/runtime/runtime-gdb.py

    G_SCANWAITING = G_SCAN+G_WAITING
    
    sts = {
        G_IDLE: 'idle',
        G_RUNNABLE: 'runnable',
        G_RUNNING: 'running',
        G_SYSCALL: 'syscall',
        G_WAITING: 'waiting',
        G_MORIBUND_UNUSED: 'moribund',
        G_DEAD: 'dead',
        G_ENQUEUE_UNUSED: 'enqueue',
        G_COPYSTACK: 'copystack',
        G_SCAN: 'scan',
        G_SCANRUNNABLE: 'runnable+s',
        G_SCANRUNNING: 'running+s',
        G_SCANSYSCALL: 'syscall+s',
        G_SCANWAITING: 'waiting+s',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

          return std::make_optional(LocalVarOp(var_handle_op));
        }
      }
      return {};
    }
    
    // Eliminate local variables that are only assigned to but never read, and thus
    // are dead.
    void RemoveDeadLocalVariables(Block &block) {
      llvm::SmallVector<LocalVarOp, 8> local_vars;
      for (Operation &op : block) {
        if (auto local_var = IsLocalVarOp(op)) {
          local_vars.push_back(local_var.value());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/shortcircuit.go

    		// but the wrong number of arguments. Eliminate those.
    		for _, v := range b.Values {
    			if v.Uses == 0 {
    				v.reset(OpInvalid)
    			}
    		}
    	}
    
    	if len(b.Preds) == 0 {
    		// Block is now dead.
    		b.Kind = BlockInvalid
    	}
    
    	phielimValue(ctl)
    	return true
    }
    
    // shortcircuitPhiPlan returns a function to handle non-ctl phi values in b,
    // where b is as described in shortcircuitBlock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                          description: Maximum number of keepalive probes
                                            to send without response before deciding the
                                            connection is dead.
                                          maximum: 4294967295
                                          minimum: 0
                                          type: integer
                                        time:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. src/runtime/HACKING.md

    "gsignal", respectively. This is usually not what you want.
    
    To determine if you're running on the user stack or the system stack,
    use `getg() == getg().m.curg`.
    
    Stacks
    ======
    
    Every non-dead G has a *user stack* associated with it, which is what
    user Go code executes on. User stacks start small (e.g., 2K) and grow
    or shrink dynamically.
    
    Every M has a *system stack* associated with it (also known as the M's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/HashBiMap.java

        }
    
        /*
         * The ordering here is important: if we deleted the key entry and then the value entry,
         * the key entry's prev or next pointer might point to the dead value entry, and when we
         * put the new entry in the key entry's position in iteration order, it might invalidate
         * the linked list.
         */
    
        if (oldEntryForValue != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager->addNestedPass<mlir::func::FuncOp>(
          mlir::createCanonicalizerPass());
      pass_manager->addNestedPass<mlir::func::FuncOp>(mlir::createCSEPass());
      // This pass does dead code elimination based on symbol visibility.
      pass_manager->addPass(mlir::createSymbolDCEPass());
    
      if (!pass_config.disable_variable_freezing) {
        // This pass 'freezes' immutable global tensors and inlines them as tf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. cmd/erasure-sets.go

            (heal format)
            return
         fi
       fi
    else
       if (some disks return format.json not found)
            // Offline disks are marked as dead.
            (heal format) // Offline disks should be marked as dead.
            return success
       fi
    fi
    */
    
    func formatsToDrivesInfo(endpoints Endpoints, formats []*formatErasureV3, sErrs []error) (beforeDrives []madmin.HealDriveInfo) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic.go

    		// When a pod is torn down, kubelet may race with PLEG and retrieve
    		// a pod status after network teardown, but the kubernetes API expects
    		// the completed pod's IP to be available after the pod is dead.
    		status.IPs = g.getPodIPs(pid, status)
    	}
    
    	// When we use Generic PLEG only, the PodStatus is saved in the cache without
    	// any validation of the existing status against the current timestamp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    	d.mark(relocs.At(m.r).Sym(), m.src)
    	d.mark(relocs.At(m.r+1).Sym(), m.src)
    	d.mark(relocs.At(m.r+2).Sym(), m.src)
    }
    
    // deadcode marks all reachable symbols.
    //
    // The basis of the dead code elimination is a flood fill of symbols,
    // following their relocations, beginning at *flagEntrySymbol.
    //
    // This flood fill is wrapped in logic for pruning unused methods.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top