Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for startMem (0.22 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
      //   bookmark event is send when the state is synced at least to the moment
      //   when request started being processed.
      // - `resourceVersionMatch` set to any other value or unset
      //   Invalid error is returned.
      //
      // Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
      //   bookmark event is send when the state is synced at least to the moment
      //   when request started being processed.
      // - `resourceVersionMatch` set to any other value or unset
      //   Invalid error is returned.
      //
      // Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      }
      std::sort(sorted_nodes.begin(), sorted_nodes.end(), NodeComparatorID());
    
      if (*debug_options_.fuel >= std::numeric_limits<int64_t>::max() / 2) {
        // The assumption is that if fuel started out as INT64_MAX, it will forever
        // stay greater than INT64_MAX / 2.
        VLOG(2) << "Starting fuel: infinity";
      } else {
        VLOG(2) << "Starting fuel: " << *debug_options_.fuel;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// On arm64, the frame pointer should be at the bottom of
    	// the stack (with R29 (aka FP) = RSP), in which case we would
    	// not want to do the subtraction here. But we started out without
    	// any frame pointer, and when we wanted to add it, we didn't
    	// want to break all the assembly doing direct writes to 8(RSP)
    	// to set the first parameter to a called function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

      Once core Kubernetes support for user namespaces is generally available and kubeadm has started to support running the control plane in userns pods, the kubeadm `RootlessControlPlane` feature gate will be removed entirely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	cancel       context.CancelFunc
    	rawDiskPaths []string
    }
    
    // UnstartedTestServer - Configures a temp FS/Erasure backend,
    // initializes the endpoints and configures the test server.
    // The server should be started using the Start() method.
    func UnstartedTestServer(t TestErrHandler, instanceType string) TestServer {
    	ctx, cancel := context.WithCancel(context.Background())
    	// create an instance of TestServer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    			src = subtract1(src)
    			for npattern < n {
    				pattern <<= 8
    				pattern |= uintptr(*src)
    				src = subtract1(src)
    				npattern += 8
    			}
    
    			// We started with the whole bit output buffer,
    			// and then we loaded bits from whole bytes.
    			// Either way, we might now have too many instead of too few.
    			// Discard the extra.
    			if npattern > n {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix_test.go

    		return dnsmessage.Message{}, os.ErrDeadlineExceeded
    	}}
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    
    	// The timeout here is less than the timeout used by the server,
    	// so the goroutine started to query the (fake) server will hang
    	// around after this test is done if we don't call dnsWaitGroup.Wait.
    	ctx, cancel := context.WithTimeout(context.Background(), 2*time.Microsecond)
    	defer cancel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    // returns that object along with a flag indicating that this was a heavy
    // weight allocation. If it is a heavy weight allocation the caller must
    // determine whether a new GC cycle needs to be started or if the GC is active
    // whether this goroutine needs to assist the GC.
    //
    // Must run in a non-preemptible context since otherwise the owner of
    // c could change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    	}
    
    	var wg sync.WaitGroup
    	sema := make(chan struct{}, runtime.GOMAXPROCS(0))
    
    	// Kick off generation of .debug_frame, since it doesn't have
    	// any entanglements and can be started right away.
    	wg.Add(1)
    	go func() {
    		sema <- struct{}{}
    		defer func() {
    			<-sema
    			wg.Done()
    		}()
    		frameSec = d.writeframes(frameSym)
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top