Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for maxargs (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/TaskDefinitionScriptTransformer.java

                ArgumentListExpression args = (ArgumentListExpression) target.getArguments();
                args.getExpressions().clear();
                if (mapArg != null) {
                    args.addExpression(mapArg);
                }
                args.addExpression(taskName);
                for (Expression extraArg : extraArgs) {
                    args.addExpression(extraArg);
                }
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 19 22:17:48 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/cpu/cpu_x86.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build 386 || amd64
    
    #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: Mon Mar 14 21:23:36 UTC 2022
    - 831 bytes
    - Viewed (0)
  6. 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)
  7. test/fixedbugs/issue15013.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // CL 21202 introduced a compiler crash in the handling of a varargs
    // function in the same recursive group as a function that calls it.
    // Nothing in the standard library caught the problem, so adding a test.
    
    package p
    
    func F1(p *int, a ...*int) (int, *int) {
    	if p == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 559 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

        final M2Installation m2
    
        List<String> gradleTasks
        List<String> equivalentMavenTasks
        List<Object> jvmOpts = []
        List<Object> mvnArgs = []
    
        int warmUpRuns = 4
        int runs = 12
    
        GradleVsMavenPerformanceTestRunner(TestDirectoryProvider testDirectoryProvider,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top