Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for sc_regs (0.2 sec)

  1. pkg/util/oom/oom_linux_test.go

    		return
    	} else if err != nil {
    		return
    	}
    	// Check that OOM scores were applied to the right processes.
    	if len(appliedPids) != len(pidOOMs) {
    		t.Errorf("Applied OOM scores to incorrect number of processes - %+v vs %v", appliedPids, pidOOMs)
    		return
    	}
    	for _, pid := range appliedPids {
    		if !pidOOMs[pid] {
    			t.Errorf("Failed to apply OOM scores to process %d", pid)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  2. releasenotes/notes/31779.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: network
    issue:
      - 31779
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 16:09:24 UTC 2021
    - 178 bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/signature_constants.h

    static constexpr char kClassifyMethodName[] = "tensorflow/serving/classify";
    
    /// Classification classes output.
    static constexpr char kClassifyOutputClasses[] = "classes";
    
    /// Classification scores output.
    static constexpr char kClassifyOutputScores[] = "scores";
    
    ////////////////////////////////////////////////////////////////////////////////
    /// Predict API constants.
    
    /// Predict inputs.
    static constexpr char kPredictInputs[] = "inputs";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  4. src/runtime/defs_openbsd_ppc64.go

    	_EVFILT_WRITE = -0x2
    )
    
    type tforkt struct {
    	tf_tcb   unsafe.Pointer
    	tf_tid   *int32
    	tf_stack uintptr
    }
    
    type sigcontext struct {
    	sc_cookie uint64
    	sc_mask   int32
    	sc_reg    [32]uint64
    	sc_lr     uint64
    	sc_cr     uint64
    	sc_xer    uint64
    	sc_ctr    uint64
    	sc_pc     uint64
    	sc_ps     uint64
    	sc_vrsave uint64
    	pad_cgo_0 [8]byte
    	sc_vsx    [64][16]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. pkg/util/oom/oom_unsupported.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package oom
    
    import (
    	"errors"
    )
    
    var unsupportedErr = errors.New("setting OOM scores is unsupported in this build")
    
    func NewOOMAdjuster() *OOMAdjuster {
    	return &OOMAdjuster{
    		ApplyOOMScoreAdj:          unsupportedApplyOOMScoreAdj,
    		ApplyOOMScoreAdjContainer: unsupportedApplyOOMScoreAdjContainer,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/score/ScoreUpdater.java

                    resultBuf.append(b.getClass().getSimpleName()).append(" : ").append(count).append('\n');
                } catch (final Exception e) {
                    logger.warn("Failed to update scores.", e);
                    resultBuf.append(e.getMessage()).append('\n');
                }
            });
            return resultBuf.toString();
        }
    
        protected void addScoreBooster(final ScoreBooster scoreBooster) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

    }
    
    }  // namespace
    
    void ConvertNMSPaddedFunc::RewriteFunc() {
      func_->setAttr(kTFImplements,
                     StringAttr::get(func_.getContext(), kTfNMSPadded));
      Value boxes = func_.getArgument(0);
      Value scores = func_.getArgument(1);
      Value max_output_size = func_.getArgument(2);
      Value iou_threshold = func_.getArgument(3);
      Value score_threshold = func_.getArgument(4);
      auto output_type0 = func_.getFunctionType().getResult(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    	}
    
    	return framework.MaxNodeScore * (sumScores - minThreshold) / (maxThreshold - minThreshold)
    }
    
    // sumImageScores returns the sum of image scores of all the containers that are already on the node.
    // Each image receives a raw score of its size, scaled by scaledImageScore. The raw scores are later used to calculate
    // the final score.
    func sumImageScores(nodeInfo *framework.NodeInfo, pod *v1.Pod, totalNumNodes int) int64 {
    	var sum int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/runtime/signal_openbsd_amd64.go

    func (c *sigctxt) cs() uint64      { return c.regs().sc_cs }
    func (c *sigctxt) fs() uint64      { return c.regs().sc_fs }
    func (c *sigctxt) gs() uint64      { return c.regs().sc_gs }
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 {
    	return *(*uint64)(add(unsafe.Pointer(c.info), 16))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    }
    
    // NormalizeScore invoked after scoring all nodes.
    func (pl *TaintToleration) NormalizeScore(ctx context.Context, _ *framework.CycleState, pod *v1.Pod, scores framework.NodeScoreList) *framework.Status {
    	return helper.DefaultNormalizeScore(framework.MaxNodeScore, true, scores)
    }
    
    // ScoreExtensions of the Score plugin.
    func (pl *TaintToleration) ScoreExtensions() framework.ScoreExtensions {
    	return pl
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top