Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 193 for maxargs (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/http/cookie.go

    	Domain     string    // optional
    	Expires    time.Time // optional
    	RawExpires string    // for reading cookies only
    
    	// MaxAge=0 means no 'Max-Age' attribute specified.
    	// MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
    	// MaxAge>0 means Max-Age attribute present and given in seconds
    	MaxAge      int
    	Secure      bool
    	HttpOnly    bool
    	SameSite    SameSite
    	Partitioned bool
    	Raw         string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

        }
    
        /**
         * Returns a spec that selects the intersection of those items selected by the given specs. Returns a spec that selects everything when no specs provided.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Spec<T> intersect(Spec<? super T>... specs) {
            if (specs.length == 0) {
                return satisfyAll();
            }
            if (specs.length == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/mime/multipart/formdata.go

    	if multipartfiles.Value() == "distinct" {
    		combineFiles = false
    		// multipartfiles.IncNonDefault() // TODO: uncomment after documenting
    	}
    	maxParts := 1000
    	if s := multipartmaxparts.Value(); s != "" {
    		if v, err := strconv.Atoi(s); err == nil && v >= 0 {
    			maxParts = v
    			multipartmaxparts.IncNonDefault()
    		}
    	}
    	maxHeaders := maxMIMEHeaders()
    
    	defer func() {
    		if file != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tools/docker-builder/main.go

    		return nil
    	}
    	log.Infof("Running make for %v: %v", arch, strings.Join(shortArgs, " "))
    	env := StandardEnv(args)
    	env = append(env, archToGoFlags(arch)...)
    	makeArgs := []string{"--no-print-directory"}
    	makeArgs = append(makeArgs, c...)
    	cmd := exec.Command("make", makeArgs...)
    	log.Infof("env: %v", archToGoFlags(arch))
    	cmd.Env = env
    	cmd.Stderr = os.Stderr
    	cmd.Stdout = os.Stdout
    	cmd.Dir = testenv.IstioSrc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	}
    
    	// Check validities of MaxAge, MaxBackups and MaxSize of log options, if file log backend is enabled.
    	if o.MaxAge < 0 {
    		allErrors = append(allErrors, fmt.Errorf("--audit-log-maxage %v can't be a negative number", o.MaxAge))
    	}
    	if o.MaxBackups < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/gccgo_c.c

    #define _STRINGIFY2_(x) #x
    #define _STRINGIFY_(x) _STRINGIFY2_(x)
    #define GOSYM_PREFIX _STRINGIFY_(__USER_LABEL_PREFIX__)
    
    // Call syscall from C code because the gccgo support for calling from
    // Go to C does not support varargs functions.
    
    struct ret {
    	uintptr_t r;
    	uintptr_t err;
    };
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go

    // license that can be found in the LICENSE file.
    
    //go:build (386 || amd64 || amd64p32) && gc
    
    package cpu
    
    // cpuid is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32)
    
    // xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 499 bytes
    - Viewed (0)
Back to top