Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for maxargs (1.73 sec)

  1. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/pprof/pprof_windows.go

    )
    
    func addMaxRSS(w io.Writer) {
    	var m windows.PROCESS_MEMORY_COUNTERS
    	p, _ := syscall.GetCurrentProcess()
    	err := windows.GetProcessMemoryInfo(p, &m, uint32(unsafe.Sizeof(m)))
    	if err == nil {
    		fmt.Fprintf(w, "# MaxRSS = %d\n", m.PeakWorkingSetSize)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 20:04:21 UTC 2022
    - 505 bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go

    func NewBalancedAllocation(_ context.Context, baArgs runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	args, ok := baArgs.(*config.NodeResourcesBalancedAllocationArgs)
    	if !ok {
    		return nil, fmt.Errorf("want args to be of type NodeResourcesBalancedAllocationArgs, got %T", baArgs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        @Override
        CacheConfigurationsInternal getCaches();
    
        /**
         * This is a version of {@link Settings#include(String...)} for just one argument.
         * If varargs get supoprted in Declarative DSL this overload will no longer be needed.
         */
        @Adding
        @Incubating
        default void include(String projectPath) {
            include(new String[] {projectPath});
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top