Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 237 for prlimit (0.39 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

    whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge_test.go

    		for ci := BaseChunkIdx; ci < BaseChunkIdx+64; ci++ {
    			si.SetEmpty(ci)
    		}
    		si.ResetSearchAddrs()
    
    		// Create and return test functions.
    		mark = func(base, limit uintptr) {
    			t.Helper()
    
    			si.AllocRange(base, limit)
    			si.FreeRange(base, limit)
    		}
    		find = func(want ChunkIdx, wantOffset uint) {
    			t.Helper()
    
    			got, gotOffset := si.Find(force)
    			if want != got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. src/runtime/mgclimit.go

    // drains with time directly (i.e. without any weighting), this effectively
    // sets a very conservative limit of 50%. This limit could be enforced directly,
    // however, but the purpose of the bucket is to accommodate spikes in GC CPU
    // utilization without hurting throughput.
    //
    // Note that the bucket in the leaky bucket mechanism can never go negative,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                this.socket = socket;
                selector = Selector.open();
                socket.register(selector, SelectionKey.OP_READ);
                buffer = ByteBuffer.allocateDirect(4096);
                BufferCaster.cast(buffer).limit(0);
            }
    
            @Override
            public int read() throws IOException {
                int nread = read(readBuffer, 0, 1);
                if (nread <= 0) {
                    return nread;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/mime/multipart/formdata.go

    			form.RemoveAll()
    			if file != nil {
    				os.Remove(file.Name())
    			}
    		}
    	}()
    
    	// maxFileMemoryBytes is the maximum bytes of file data we will store in memory.
    	// Data past this limit is written to disk.
    	// This limit strictly applies to content, not metadata (filenames, MIME headers, etc.),
    	// since metadata is always stored in memory, not disk.
    	//
    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/syscall/syscall_solaris.go

    //sysnb	Getpid() (pid int)
    //sys	Geteuid() (euid int)
    //sys	Getegid() (egid int)
    //sys	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (n int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    //sysnb	Getuid() (uid int)
    //sys	Kill(pid int, signum Signal) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LongMath.java

        long limit = Long.MAX_VALUE + ((a ^ b) >>> (Long.SIZE - 1));
        if (leadingZeros < Long.SIZE | (a < 0 & b == Long.MIN_VALUE)) {
          // overflow
          return limit;
        }
        long result = a * b;
        if (a == 0 || result / a == b) {
          return result;
        }
        return limit;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

    public interface WorkerLeaseService extends WorkerLeaseRegistry, ProjectLeaseRegistry, WorkerThreadRegistry {
        /**
         * Returns the maximum number of worker leases that this service will grant at any given time. Note that the actual limit may vary over time but will never _exceed_ the value returned by this method.
         */
        int getMaxWorkerCount();
    
        /**
         * Runs a given {@link Factory} while the specified locks are being held, releasing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/runtime/mcentral.go

    	// of time we can spend trying to find free space and
    	// amortizes the cost of small object sweeping over the
    	// benefit of having a full free span to allocate from. By
    	// setting this to 100, we limit the space overhead to 1%.
    	//
    	// TODO(austin,mknyszek): This still has bad worst-case
    	// throughput. For example, this could find just one free slot
    	// on the 100th swept span. That limits allocation latency, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. internal/s3select/sql/parser_test.go

    		"select * from s3object[*].books[*].name as s",
    		"select * from s3object s where name > 2",
    		"select * from s3object[*].name as s where name > 2",
    		"select * from s3object[*].books[*] limit 1",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &s)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    
    		// repr.Println(s, repr.Indent("  "), repr.OmitEmpty(true))
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top