Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 600 for num1 (0.04 sec)

  1. src/syscall/asm_netbsd_arm.s

    	MOVW $-1, R3
    	MOVW R3, r1+28(FP) // r1
    	MOVW R2, r2+32(FP) // r2
    	MOVW R0, err+36(FP) // err
    	BL runtime·exitsyscall(SB)
    	RET
    
    TEXT	·Syscall9(SB),NOSPLIT,$0-52
    	BL runtime·entersyscall(SB)
    	MOVW num+0(FP), R0 // sigcall num
    	MOVW a1+4(FP), R1 // a1
    	MOVW a2+8(FP), R2 // a2
    	MOVW a3+12(FP), R3 // a3
    	MOVW R13, R4
    	MOVW $a4+16(FP), R13 // a4 to a9 are passed on stack
    	SWI $0 // syscall
    	MOVW R4, R13
    	MOVW $0, R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 21:13:25 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/callback.go

    var cnt int
    
    func grow() {
    	x := 10000
    	sum := 0
    	if grow1(&x, &sum) == 0 {
    		panic("bad")
    	}
    }
    
    func grow1(x, sum *int) int {
    	if *x == 0 {
    		return *sum + 1
    	}
    	*x--
    	sum1 := *sum + *x
    	return grow1(x, &sum1)
    }
    
    func CgoCallbackGC() {
    	P := 100
    	if os.Getenv("RUNTIME_TEST_SHORT") != "" {
    		P = 10
    	}
    
    	if e := extraMInUse.Load(); e != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 14:05:01 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/AccessTokenHelperTest.java

        protected static final int NUM = 20;
    
        private AccessTokenHelper accessTokenHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            accessTokenHelper = new AccessTokenHelper();
        }
    
        public void test_generateAccessToken() {
            List<String> tokens = new ArrayList<String>();
            for (int i = 0; i < NUM; i++) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/PluginUnderTest.groovy

            void suppressCleanupErrors() {
    
            }
        }
    
        private final int num
        private final TestFile projectDir
        private List<File> implClasspath = []
    
        PluginUnderTest(TestFile projectDir) {
            this(0, projectDir)
        }
    
        PluginUnderTest(int num, TestFile projectDir) {
            this.num = num
            this.projectDir = projectDir
            this.implClasspath.addAll(getImplClasspath())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/JvmBlockingTestClassGenerator.groovy

                        ${server.callFromBuild("$OTHER_RESOURCE")}
                    }
                }
            """.stripIndent()
        }
    
        List<String> withNonfailingTests(int num) {
            (1..num).collect {
                final resource = "test_${it}" as String
                root.file("src/test/java/pkg/OtherTest_${it}.java") << """
                    package pkg;
                    $testFrameworkImports
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/CrudTestBase.java

        }
    
        protected void testRead() {
            // Test: get settings api.
            final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM);
            List<String> nameList = getPropList(searchBody, getKeyProperty());
    
            assertEquals(NUM, nameList.size());
            for (int i = 0; i < NUM; i++) {
                final String name = getNamePrefix() + i;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

        protected final int num;
    
        protected final long total;
    
        protected final List<SuggestItem> items;
    
        public SuggestResponse(final String index, final long tookMs, final List<String> words, final long total,
                final List<SuggestItem> items) {
            this.index = index;
            this.tookMs = tookMs;
            this.words = words;
            this.num = words.size();
            this.total = total;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy.go

    	var allProviderHints [][]TopologyHint
    	for _, hints := range providersHints {
    		// If hints is nil, insert a single, preferred any-numa hint into allProviderHints.
    		if len(hints) == 0 {
    			klog.InfoS("Hint Provider has no preference for NUMA affinity with any resource")
    			allProviderHints = append(allProviderHints, []TopologyHint{{nil, true}})
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. src/runtime/runtime_test.go

    			num: 1<<32 - 1,
    			div: 2,
    			ret: 1<<31 - 1, // no overflow.
    			rem: 1,
    		},
    		{
    			num: 1 << 32,
    			div: 2,
    			ret: 1<<31 - 1, // overflow.
    			rem: 0,
    		},
    		{
    			num: 1 << 40,
    			div: 2,
    			ret: 1<<31 - 1, // overflow.
    			rem: 0,
    		},
    		{
    			num: 1<<40 + 1,
    			div: 1 << 10,
    			ret: 1 << 30,
    			rem: 1,
    		},
    	} {
    		name := fmt.Sprintf("%d div %d", tc.num, tc.div)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        }
    
        void killBuild(int num = 0) {
            run { builds[num].abort().waitForFailure() }
        }
    
        void failed(GradleHandle handle) {
            assert handle.waitForFailure()
        }
    
        void daemonContext(num = 0, Closure assertions) {
            run { doDaemonContext(builds[num], assertions) }
        }
    
        void foregroundDaemonContext(num = 0, Closure assertions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top