Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for sc_regs (0.12 sec)

  1. pkg/kubelet/qos/policy.go

    // The OOM score of a process is the percentage of memory it consumes
    // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000
    // and 1000. Containers with higher OOM scores are killed if the system runs out of memory.
    // See https://lwn.net/Articles/391222/ for more information.
    func GetContainerOOMScoreAdjust(pod *v1.Pod, container *v1.Container, memoryCapacity int64) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/score/ScoreBooster.java

            if (bulkRequestBuilder != null) {
                final BulkResponse response = bulkRequestBuilder.execute().actionGet(requestTimeout);
                if (response.hasFailures()) {
                    logger.warn("Failed to update scores: {}", response.buildFailureMessage());
                }
                bulkRequestBuilder = null;
            }
        }
    
        public int getPriority() {
            return this.priority;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    	returnFeedsInlinableFuncToIndCallAdj
    	returnFeedsConcreteToInterfaceCallAdj
    
    	sentinelScoreAdj // sentinel; not a real adjustment
    )
    
    // This table records the specific values we use to adjust call
    // site scores in a given scenario.
    // NOTE: these numbers are chosen very arbitrarily; ideally
    // we will go through some sort of turning process to decide
    // what value for each one produces the best performance.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    }
    
    // NormalizeScore invoked after scoring all nodes.
    func (pl *NodeAffinity) NormalizeScore(ctx context.Context, state *framework.CycleState, pod *v1.Pod, scores framework.NodeScoreList) *framework.Status {
    	return helper.DefaultNormalizeScore(framework.MaxNodeScore, false, scores)
    }
    
    // ScoreExtensions of the Score plugin.
    func (pl *NodeAffinity) ScoreExtensions() framework.ScoreExtensions {
    	return pl
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/doc.go

    // two different tags may represent the same language.
    //
    // By default, only legacy and deprecated tags are converted into their
    // canonical equivalent. All other information is preserved. This approach makes
    // the confidence scores more accurate and allows matchers to distinguish
    // between variants that are otherwise lost.
    //
    // As a consequence, two tags that should be treated as identical according to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/runtime/signal_linux_ppc64x.go

    )
    
    type sigctxt struct {
    	info *siginfo
    	ctxt unsafe.Pointer
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) regs() *ptregs      { return (*ucontext)(c.ctxt).uc_mcontext.regs }
    func (c *sigctxt) cregs() *sigcontext { return &(*ucontext)(c.ctxt).uc_mcontext }
    
    func (c *sigctxt) r0() uint64  { return c.regs().gpr[0] }
    func (c *sigctxt) r1() uint64  { return c.regs().gpr[1] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm_test.go

    		dyn     int
    		nonpic  int
    	}
    	tsts := [...]struct {
    		arg    obj.Addr
    		output interface{}
    	}{
    		// Supported register type args
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_R1}, C_REG},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_R2}, C_REGP},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_F1}, C_FREG},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_F2}, C_FREGP},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_V2}, C_VREG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/syscall/types_linux.go

    #else
    	char sun_path[108];
    #endif
    };
    
    #ifdef __ARM_EABI__
    typedef struct user_regs PtraceRegs;
    #elif defined(__aarch64__)
    typedef struct user_pt_regs PtraceRegs;
    #elif defined(__powerpc64__)
    typedef struct pt_regs PtraceRegs;
    #elif defined(__mips__)
    typedef struct user PtraceRegs;
    #elif defined(__s390x__)
    typedef struct _user_regs_struct PtraceRegs;
    #else
    typedef struct user_regs_struct PtraceRegs;
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_s390x.go

    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Psw                      PtracePsw
    	Gprs                     [16]uint64
    	Acrs                     [16]uint32
    	Orig_gpr2                uint64
    	Fp_regs                  PtraceFpregs
    	Per_info                 PtracePer
    	Ieee_instruction_pointer uint64
    }
    
    type PtracePsw struct {
    	Mask uint64
    	Addr uint64
    }
    
    type PtraceFpregs struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/a.out.go

    }
    
    const (
    	BIG = 2046
    )
    
    const (
    	// mark flags
    	LABEL  = 1 << 0
    	LEAF   = 1 << 1
    	SYNC   = 1 << 2
    	BRANCH = 1 << 3
    )
    
    const (
    	C_NONE = iota
    	C_REG
    	C_FREG
    	C_FCSRREG
    	C_FCCREG
    	C_ZCON
    	C_SCON // 12 bit signed
    	C_UCON // 32 bit signed, low 12 bits 0
    	C_ADD0CON
    	C_AND0CON
    	C_ADDCON // -0x800 <= v < 0
    	C_ANDCON // 0 < v <= 0xFFF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top