Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 600 for num1 (0.1 sec)

  1. pkg/kubelet/cm/topologymanager/numa_info.go

    		numaNodes = append(numaNodes, node.Id)
    
    		var nodeDistance []uint64
    		if opts.PreferClosestNUMA {
    			nodeDistance = node.Distances
    			if nodeDistance == nil {
    				return nil, fmt.Errorf("error getting NUMA distances from cadvisor")
    			}
    		}
    		distances[node.Id] = nodeDistance
    	}
    
    	numaInfo := &NUMAInfo{
    		Nodes:         numaNodes,
    		NUMADistances: distances,
    	}
    
    	return numaInfo, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

                def connection = [:] as RemoteConnection
                // unsure why I can't add this as property in the map-mock above
                connection.metaClass.num = address.num
                return { connection } as ConnectCompletion
            }
        }
    
        def createAddress(int i) {
            new Address() {
                int getNum() { i }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/internal/runtime/syscall/asm_linux_arm64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	MOVD	num+0(FP), R8	// syscall entry
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	MOVD	a4+32(FP), R3
    	MOVD	a5+40(FP), R4
    	MOVD	a6+48(FP), R5
    	SVC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 645 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/id.go

    func (a *idAlloc) get() ID {
    	x := a.last
    	x++
    	if x == 1<<31-1 {
    		panic("too many ids for this function")
    	}
    	a.last = x
    	return x
    }
    
    // num returns the maximum ID ever returned + 1.
    func (a *idAlloc) num() int {
    	return int(a.last + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 22 19:21:16 UTC 2016
    - 576 bytes
    - Viewed (0)
  5. test/complit.go

    package main
    
    type T struct {
    	i    int
    	f    float64
    	s    string
    	next *T
    }
    
    type R struct {
    	num int
    }
    
    func itor(a int) *R {
    	r := new(R)
    	r.num = a
    	return r
    }
    
    func eq(a []*R) {
    	for i := 0; i < len(a); i++ {
    		if a[i].num != i {
    			panic("bad")
    		}
    	}
    }
    
    func teq(t *T, n int) {
    	for i := 0; i < n; i++ {
    		if t == nil || t.i != i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.7K bytes
    - Viewed (0)
  6. src/main/resources/mail/crawler.dfmail

    Exec Time:  /*pmb.webFsIndexExecTime:orElse('-')*/ ms
    Num of Doc: /*pmb.webFsIndexSize:orElse('-')*/ docs
    
    --- Data Store Crawler ---
    Start Time: /*pmb.dataCrawlStartTime:orElse('-')*/
    End Time:   /*pmb.dataCrawlEndTime:orElse('-')*/
    Exec Time:  /*pmb.dataCrawlExecTime:orElse('-')*/ ms
    
    --- Data Store Indexer ---
    Exec Time:  /*pmb.dataIndexExecTime:orElse('-')*/ ms
    Num of Doc: /*pmb.dataIndexSize:orElse('-')*/ docs
    
    --- Total ---
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jan 15 22:05:20 UTC 2020
    - 1K bytes
    - Viewed (0)
  7. src/internal/runtime/syscall/asm_linux_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	MOVV	num+0(FP), R2	// syscall entry
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	a4+32(FP), R7
    	MOVV	a5+40(FP), R8
    	MOVV	a6+48(FP), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 724 bytes
    - Viewed (0)
  8. src/runtime/slice.go

    //
    //go:linkname reflect_growslice reflect.growslice
    func reflect_growslice(et *_type, old slice, num int) slice {
    	// Semantically equivalent to slices.Grow, except that the caller
    	// is responsible for ensuring that old.len+num > old.cap.
    	num -= old.cap - old.len // preserve memory of old[old.len:old.cap]
    	new := growslice(old.array, old.cap+num, old.cap, num, et)
    	// growslice does not zero out new[old.cap:new.len] since it assumes that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    		}
    	} else {
    		// `tpVal` doesn't exist
    		if num < p[0].MatchNum {
    			// update paths[1] with paths[0]
    			p[1] = p[0]
    			// update paths[0]
    			p[0].TopologyValue, p[0].MatchNum = tpVal, num
    		} else if num < p[1].MatchNum {
    			// update paths[1]
    			p[1].TopologyValue, p[1].MatchNum = tpVal, num
    		}
    	}
    }
    
    // PreFilter invoked at the prefilter extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  10. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    type DeviceManagerCheckpoint interface {
    	checkpointmanager.Checkpoint
    	GetData() ([]PodDevicesEntry, map[string][]string)
    }
    
    // DevicesPerNUMA represents device ids obtained from device plugin per NUMA node id
    type DevicesPerNUMA map[int64][]string
    
    // PodDevicesEntry connects pod information to devices
    type PodDevicesEntry struct {
    	PodUID        string
    	ContainerName string
    	ResourceName  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top