Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 318 for nums (0.05 sec)

  1. 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)
  2. android/guava/src/com/google/common/base/Platform.java

        return matcher.precomputedInternal();
      }
    
      static <T extends Enum<T>> Optional<T> getEnumIfPresent(Class<T> enumClass, String value) {
        WeakReference<? extends Enum<?>> ref = Enums.getEnumConstants(enumClass).get(value);
        /*
         * We use `fromNullable` instead of `of` because `WeakReference.get()` has a nullable return
         * type.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/cm/cpumanager/policy_test.go

    		Core(s) per socket:  64
    		Socket(s):           2
    		NUMA node(s):        8 (NPS=4)
    		NUMA node0 CPU(s):   0-15,128-143
    		NUMA node1 CPU(s):   16-31,144-159
    		NUMA node2 CPU(s):   32-47,160-175
    		NUMA node3 CPU(s):   48-63,176-191
    		NUMA node4 CPU(s):   64-79,192-207
    		NUMA node5 CPU(s):   80-95,208-223
    		NUMA node6 CPU(s):   96-111,224-239
    		NUMA node7 CPU(s):   112-127,240-255
    	*/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
  7. src/syscall/mksysnum_dragonfly.pl

    while(<>){
    	if(/^([0-9]+)\s+STD\s+({ \S+\s+(\w+).*)$/){
    		my $num = $1;
    		my $proto = $2;
    		my $name = "SYS_$3";
    		$name =~ y/a-z/A-Z/;
    
    		# There are multiple entries for enosys and nosys, so comment them out.
    		if($name =~ /^SYS_E?NOSYS$/){
    			$name = "// $name";
    		}
    		if($name eq 'SYS_SYS_EXIT'){
    			$name = 'SYS_EXIT';
    		}
    
    		print "	$name = $num;  // $proto\n";
    	}
    }
    
    print <<EOF;
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 866 bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Platform.java

        return matcher.precomputedInternal();
      }
    
      static <T extends Enum<T>> Optional<T> getEnumIfPresent(Class<T> enumClass, String value) {
        WeakReference<? extends Enum<?>> ref = Enums.getEnumConstants(enumClass).get(value);
        /*
         * We use `fromNullable` instead of `of` because `WeakReference.get()` has a nullable return
         * type.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager.go

    	// from valid NUMA Nodes contained in the affinity mask. Devices in the
    	// second list come from valid NUMA Nodes not in the affinity mask. Devices
    	// in the third list come from devices with no NUMA Node association (i.e.
    	// those mapped to the fake NUMA Node -1). Because we loop through the
    	// sorted list of NUMA nodes in order, within each list, devices are sorted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. okhttp-logging-interceptor/api/logging-interceptor.api

    	public static final field HEADERS Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field NONE Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static fun getEntries ()Lkotlin/enums/EnumEntries;
    	public static fun valueOf (Ljava/lang/String;)Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static fun values ()[Lokhttp3/logging/HttpLoggingInterceptor$Level;
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top