Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,346 for unlimited (0.44 sec)

  1. src/cmd/internal/bio/buf_mmap.go

    // distinct mapped regions per process. As of this writing:
    //
    //	Darwin    unlimited
    //	DragonFly   1000000 (vm.max_proc_mmap)
    //	FreeBSD   unlimited
    //	Linux         65530 (vm.max_map_count) // TODO: query /proc/sys/vm/max_map_count?
    //	NetBSD    unlimited
    //	OpenBSD   unlimited
    var mmapLimit int32 = 1<<31 - 1
    
    func init() {
    	// Linux is the only practically concerning OS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/archive/tar/format.go

    //	Name              |   256B | unlimited | unlimited
    //	Linkname          |   100B | unlimited | unlimited
    //	Size              | uint33 | unlimited |    uint89
    //	Mode              | uint21 |    uint21 |    uint57
    //	Uid/Gid           | uint21 | unlimited |    uint57
    //	Uname/Gname       |    32B | unlimited |       32B
    //	ModTime           | uint33 | unlimited |     int89
    //	AccessTime        |    n/a | unlimited |     int89
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/run.bash

    # no core files, please
    ulimit -c 0
    
    # Raise soft limits to hard limits for NetBSD/OpenBSD.
    # We need at least ~300 MB of bss.
    [ "$(ulimit -H -d)" = "unlimited" ] || ulimit -S -d $(ulimit -H -d)
    
    # Thread count limit on NetBSD 7.
    if ulimit -T &> /dev/null; then
    	[ "$(ulimit -H -T)" = "unlimited" ] || ulimit -S -T $(ulimit -H -T)
    fi
    
    export GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. cmd/veeam-sos-api.go

    //     Optional value, default 64, range: 1-unlimited
    //
    //   - <S3MultiObjectDeleteLimit>
    //     Some of the Veeam products use Multi Delete operations. This setting can reduce how many objects are included in one
    //     multi-delete operation. The same registry key setting overwrites the storage-defined setting.
    //     Optional value, default 1000, range: 1-unlimited (S3 standard maximum is 1000 and should not be set higher)
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/packaging/common/systemd/fess.service

    LimitNOFILE=${packaging.os.max.open.files}
    
    # Specifies the maximum number of bytes of memory that may be locked into RAM
    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    # Shutdown delay in seconds, before process is tried to be killed with KILL (if configured)
    TimeoutStopSec=20
    
    [Install]
    WantedBy=multi-user.target
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/limit.go

    		if s == "" {
    			return
    		}
    
    		n, err := strconv.Atoi(s)
    		if err != nil {
    			Fatalf("invalid %s: %v", NetLimitGodebug.Name(), err)
    		}
    		if n < 0 {
    			// Treat negative values as unlimited.
    			return
    		}
    		netLimitSem = make(chan struct{}, n)
    	})
    
    	return cap(netLimitSem), netLimitSem != nil
    }
    
    // AcquireNet acquires a semaphore token for a network operation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_solaris_amd64.c

    	setg_gcc = setg;
    	if (getcontext(&ctx) != 0)
    		perror("runtime/cgo: getcontext failed");
    	g->stacklo = (uintptr_t)ctx.uc_stack.ss_sp;
    
    	// Solaris processes report a tiny stack when run with "ulimit -s unlimited".
    	// Correct that as best we can: assume it's at least 1 MB.
    	// See golang.org/issue/12210.
    	if(ctx.uc_stack.ss_size < 1024*1024)
    		g->stacklo -= 1024*1024 - ctx.uc_stack.ss_size;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/workers/internal/WorkerPruningSoakTest.groovy

    /**
     * Verifies that we can spawn large amounts of workers without running out of memory, because the old ones will be killed
     * if necessary.
     *
     * <p>
     *     This mostly is a test for Windows, as other OSes have effectively-unlimited virtual memory, and won't need to kill
     *     processes.
     * </p>
     */
    class WorkerPruningSoakTest extends AbstractIntegrationSpec {
        def fixture = new WorkerExecutorFixture(temporaryFolder)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pkg/api/v1/resource/helpers_test.go

    			},
    		},
    		{
    			description:    "no limited containers should result in no limits for the pod",
    			expectedLimits: v1.ResourceList{},
    			initContainers: []v1.Container{},
    			containers: []v1.Container{
    				{
    					// Unlimited container
    				},
    			},
    		},
    		{
    			description: "one limited and one unlimited container should result in the limited container's limits for the pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    		line, err := r.ReadString('\n')
    		if line != "" {
    			if strings.Contains(line, "clang version") {
    				// Simulate a clang version string with an arbitrary vendor prefix.
    				const vendorString = "Gopher Solutions Unlimited "
    				os.Stderr.WriteString(vendorString)
    			}
    			os.Stderr.WriteString(line)
    		}
    		if err != nil {
    			break
    		}
    	}
    	os.Stderr.Close()
    
    	if err := cmd.Wait(); err != nil {
    		os.Exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top