Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 182 for maxargs (0.28 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
     * <p>Depending on your message arguments, memory may be allocated for boxing and varargs array
     * creation. However, the methods of this class have a large number of overloads that prevent such
     * allocations in many common cases.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsIncludeManyIntegrationTest.groovy

                includeFunction == 'includeFlat' ? "../" + name : name
            }) as String[])
        }
    
        @Requires(UnitTestPreconditions.IsGroovy3)
        def "including over 250 projects is not possible via varargs in Groovy 3"() {
            createProjectDirectories(254, includeFunction)
            // Groovy doesn't even support >=255 args at compilation, so to trigger the right error
            // 254 projects must be used instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/engine.go

    			if usage.RegexpArgs != nil {
    				// First join rawArgs without expansion to pass to RegexpArgs.
    				rawArgs := make([]string, 0, len(cmd.rawArgs))
    				for _, frags := range cmd.rawArgs {
    					var b strings.Builder
    					for _, frag := range frags {
    						b.WriteString(frag.s)
    					}
    					rawArgs = append(rawArgs, b.String())
    				}
    				regexpArgs = usage.RegexpArgs(rawArgs...)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

            runner.gradleTasks = ["clean", gradleTask]
            runner.equivalentMavenTasks = ["clean", mavenTask]
            if (mavenTask == "package") {
                runner.mvnArgs << "-Dmaven.test.skip=true"
            }
            runner.warmUpRuns = 2
            runner.runs = 5
    
            when:
            def results = runner.run()
    
            then:
            results.assertFasterThanMaven()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go

    //go:build (386 || amd64 || amd64p32) && gccgo
    
    package cpu
    
    //extern gccgoGetCpuidCount
    func gccgoGetCpuidCount(eaxArg, ecxArg uint32, eax, ebx, ecx, edx *uint32)
    
    func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) {
    	var a, b, c, d uint32
    	gccgoGetCpuidCount(eaxArg, ecxArg, &a, &b, &c, &d)
    	return a, b, c, d
    }
    
    //extern gccgoXgetbv
    func gccgoXgetbv(eax, edx *uint32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 795 bytes
    - Viewed (0)
  6. cmd/api-resources.go

    func getObjectResources(values url.Values) (uploadID string, partNumberMarker, maxParts int, encodingType string, errCode APIErrorCode) {
    	var err error
    	errCode = ErrNone
    
    	if values.Get("max-parts") != "" {
    		if maxParts, err = strconv.Atoi(values.Get("max-parts")); err != nil {
    			errCode = ErrInvalidMaxParts
    			return
    		}
    	} else {
    		maxParts = maxPartsList
    	}
    
    	if values.Get("part-number-marker") != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 07 18:25:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

         * will not be used and a network request will be made.
         *
         * @param maxAge a non-negative duration. This is stored and transmitted with [TimeUnit.SECONDS]
         *     precision; finer precision will be lost.
         */
        fun maxAge(maxAge: Duration) =
          apply {
            val maxAgeSeconds = maxAge.inWholeSeconds
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_x86.s

    // license that can be found in the LICENSE file.
    
    //go:build (386 || amd64 || amd64p32) && gc
    
    #include "textflag.h"
    
    // func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32)
    TEXT ·cpuid(SB), NOSPLIT, $0-24
    	MOVL eaxArg+0(FP), AX
    	MOVL ecxArg+4(FP), CX
    	CPUID
    	MOVL AX, eax+8(FP)
    	MOVL BX, ebx+12(FP)
    	MOVL CX, ecx+16(FP)
    	MOVL DX, edx+20(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 600 bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gccgo.go

    	var absOfiles []string
    	for _, f := range ofiles {
    		absOfiles = append(absOfiles, mkAbs(objdir, f))
    	}
    	var arArgs []string
    	if cfg.Goos == "aix" && cfg.Goarch == "ppc64" {
    		// AIX puts both 32-bit and 64-bit objects in the same archive.
    		// Tell the AIX "ar" command to only care about 64-bit objects.
    		arArgs = []string{"-X64"}
    	}
    	absAfile := mkAbs(objdir, afile)
    	// Try with D modifier first, then without if that fails.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/test/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepositoryTest.kt

                        listOf("java.lang.String"),
                        false
                    )
                )
            )
        }
    
        @Test
        fun `can extract JavaFunction from single parameter with varargs signature string`() {
            assertThat(
                javaFunctionOf("org.gradle.SomeType.methodMan(java.lang.String[])"),
                equalTo(
                    JavaFunction(
                        "org.gradle.SomeType",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top