Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 503 for max8 (0.08 sec)

  1. test/fixedbugs/issue13799.go

    func test6(iter int) {
    
    	const maxI = 500
    	var x int
    	m := &x
    
    	// var fn *str
    	for i := 0; i < maxI; i++ {
    		var fn *str  // this makes it work, because fn stays off heap
    		fn = &str{m} // ERROR "&str{...} does not escape"
    		recur1(0, fn)
    	}
    
    	if *m != maxI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/image/geom.go

    	}
    	if r.Max.X > s.Max.X {
    		r.Max.X = s.Max.X
    	}
    	if r.Max.Y > s.Max.Y {
    		r.Max.Y = s.Max.Y
    	}
    	// Letting r0 and s0 be the values of r and s at the time that the method
    	// is called, this next line is equivalent to:
    	//
    	// if max(r0.Min.X, s0.Min.X) >= min(r0.Max.X, s0.Max.X) || likewiseForY { etc }
    	if r.Empty() {
    		return ZR
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r66/CommandLineOptionsCrossVersionSpec.groovy

        }
    
        def "command-line arguments take precedence over system properties"() {
            when:
            def result = withBuild { BuildLauncher launcher ->
                launcher.withArguments("-Dorg.gradle.workers.max=4", "--max-workers=12")
            }
    
            then:
            result.standardOutput.contains("max workers: 12")
        }
    
        @TargetGradleVersion(">=6.6")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/internal/fuzz/mutator.go

    				// Don't let v exceed maxValue
    				max = maxValue - v
    			}
    
    			v += uint64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= 0 {
    				continue
    			}
    			if v < max {
    				// Don't let v drop below 0
    				max = v
    			}
    			v -= uint64(1 + m.rand(int(max)))
    			return v
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        @Required
        @Size(max = 200)
        public String name;
    
        @Size(max = 1000)
        public String description;
    
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerScript;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

        public Integer crudMode;
    
        @Size(max = 100)
        public String hostname;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer port;
    
        @Size(max = 100)
        public String authRealm;
    
        @Size(max = 10)
        public String protocolScheme;
    
        @Required
        @Size(max = 100)
        public String username;
    
        @Size(max = 100)
        public String password;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. test/typeparam/listimp.dir/a.go

    	Next *ListNum[T]
    	Val  T
    }
    
    const Clip = 5
    
    // ClippedLargest returns the largest in the list of OrderNums, but a max of 5.
    func (l *ListNum[T]) ClippedLargest() T {
    	var max T
    	for p := l; p != nil; p = p.Next {
    		if p.Val > max && p.Val < Clip {
    			max = p.Val
    		}
    	}
    	return max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/rand/rand_test.go

    func TestIntnRange(t *testing.T) {
    	// 0 is invalid.
    	for min, max := range map[int]int{1: 2, 10: 123, 100: 500} {
    		for i := 0; i < maxRangeTestCount; i++ {
    			inrange := IntnRange(min, max)
    			if inrange < min || inrange >= max {
    				t.Errorf("%v out of range (%v,%v)", inrange, min, max)
    			}
    		}
    	}
    }
    
    func TestInt63nRange(t *testing.T) {
    	// 0 is invalid.
    	for min, max := range map[int64]int64{1: 2, 10: 123, 100: 500} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 07 13:45:36 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/cthread_windows.c

    static unsigned int
    goDummyCallbackThread(void* p)
    {
    	int i, max;
    
    	max = *(int*)p;
    	for(i=0; i<max; i++)
    		goDummy();
    	return 0;
    }
    
    int
    callGoInCThread(int max)
    {
    	uintptr_t thread_id;
    	thread_id = _beginthreadex(0, 0, goDummyCallbackThread, &max, 0, 0);
    	WaitForSingleObject((HANDLE)thread_id, INFINITE);
    	CloseHandle((HANDLE)thread_id);
    	return max;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        public Integer crudMode;
    
        @Size(max = 100)
        public String hostname;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer port;
    
        @Size(max = 10)
        public String protocolScheme;
    
        @Required
        @Size(max = 100)
        public String username;
    
        @Size(max = 100)
        public String password;
    
        @Size(max = 1000)
        public String parameters;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top