Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 600 for num1 (0.05 sec)

  1. src/syscall/mksysnum_netbsd.pl

    	if($line =~ /^([0-9]+)\s+((STD)|(NOERR))\s+(RUMP\s+)?({\s+\S+\s*\*?\s*\|(\S+)\|(\S*)\|(\w+).*\s+})(\s+(\S+))?$/) {
    		my $num = $1;
    		my $proto = $6;
    		my $compat = $8;
    		my $name = "$7_$9";
    
    		$name = "$7_$11" if $11 ne '';
    		$name =~ y/a-z/A-Z/;
    
    		if($compat eq '' || $compat eq '30' || $compat eq '50') {
    			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
    - 1K bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/syscall_linux.go

    import (
    	"unsafe"
    )
    
    // TODO(https://go.dev/issue/51087): This package is incomplete and currently
    // only contains very minimal support for Linux.
    
    // Syscall6 calls system call number 'num' with arguments a1-6.
    func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    
    func EpollCreate1(flags int32) (fd int32, errno uintptr) {
    	r1, _, e := Syscall6(SYS_EPOLL_CREATE1, uintptr(flags), 0, 0, 0, 0, 0)
    	return int32(r1), e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:26:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/log/slog/value_access_benchmark_test.go

    		return a.str(), true
    	}
    	return "", false
    }
    
    func (a Value) AsInt64() (int64, bool) {
    	if a.Kind() == KindInt64 {
    		return int64(a.num), true
    	}
    	return 0, false
    }
    
    func (a Value) AsUint64() (uint64, bool) {
    	if a.Kind() == KindUint64 {
    		return a.num, true
    	}
    	return 0, false
    }
    
    func (a Value) AsFloat64() (float64, bool) {
    	if a.Kind() == KindFloat64 {
    		return a.float(), true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/topology_hints.go

    	// Initialize minAffinitySize to include all NUMA Nodes
    	minAffinitySize := len(m.numaNodes)
    
    	// Iterate through all combinations of NUMA Nodes and build hints from them.
    	hints := []topologymanager.TopologyHint{}
    	bitmask.IterateBitMasks(m.numaNodes, func(mask bitmask.BitMask) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

      let description = [{
        Allocate futures and corresponding promises.
    
        $num: The number of futures to be allocated.
    
        $promises: There are $num promises, and promises[i] shares the state with futures[i].
        $futures: There are $num futures, and futures[i] shares the state with promises[i].
      }];
    
      let arguments = (ins
        I32Attr:$num
      );
    
      let results = (outs
        Variadic<MlrtPromiseType>:$promises,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    		objects = append(objects, pv)
    	}
    	return plugintesting.SetupPluginWithInformers(ctx, tb, New, &config.InterPodAffinityArgs{}, snapshot, objects)
    }
    
    func makePVsWithZoneLabel(num int) []*v1.PersistentVolume {
    	pvList := make([]*v1.PersistentVolume, num, num)
    	for i := 0; i < len(pvList); i++ {
    		pvName := fmt.Sprintf("Vol_Stable_%d", i)
    		zone := fmt.Sprintf("us-west-%d", i)
    		pvList[i] = &v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

         */
        @Test
        public void testPerformance() throws Exception {
            int num = 100000;
            Map<String, Object> hmap = new HashMap<String, Object>();
            Map<String, Object> amap = new ArrayMap<String, Object>();
    
            long start = System.currentTimeMillis();
            for (int i = 0; i < num; i++) {
                hmap.put(String.valueOf(i), null);
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest.groovy

            }
        }
    
        private generateSources(int num, File originalFile, File destinationDir) {
            def text = originalFile.text
            def className = originalFile.name.substring(0, originalFile.name.lastIndexOf("."))
            def extension = originalFile.name.substring(originalFile.name.lastIndexOf(".") + 1)
    
            num.times { count ->
                def newClassName = className + count
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java

            if (o == null) {
                return null;
            } else if (o instanceof Boolean) {
                return (Boolean) o;
            } else if (o instanceof Number) {
                final int num = ((Number) o).intValue();
                return num != 0;
            } else if (o instanceof String) {
                final String s = (String) o;
                if ("true".equalsIgnoreCase(s)) {
                    return Boolean.TRUE;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/field.go

    	u, l := bs.parse(i)
    	return int64(u) << (64 - l) >> (64 - l)
    }
    
    // Count the number of bits in the aggregate BitFields
    func (bs BitFields) NumBits() int {
    	num := 0
    	for _, b := range bs {
    		num += int(b.Bits)
    	}
    	return num
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top