Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for rebind (0.2 sec)

  1. src/cmd/dist/build.go

    		// Check that GOROOT/bin is bound before /bin.
    		pid := strings.Replace(readfile("#c/pid"), " ", "", -1)
    		ns := fmt.Sprintf("/proc/%s/ns", pid)
    		if !strings.Contains(readfile(ns), fmt.Sprintf("bind -b %s /bin", gorootBin)) {
    			xprintf("*** You need to bind %s before /bin.\n", gorootBin)
    		}
    	} else {
    		// Check that GOROOT/bin appears in $PATH.
    		pathsep := ":"
    		if gohostos == "windows" {
    			pathsep = ";"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-drop-while-shape-invariant`
    
    _Drop `shape_invariant` attribute from While/WhileRegion ops._
    
    Drop `shape_invariant` attribute from tf.While and tf.WhileRegion op. This
    would allow shape inference pass to further refine operand/result shapes of
    these ops. This is only safe to do when compiling to XLA.
    ### `-tf-drop-while-shape-invariant-in-device-cluster`
    
    _Drop `shape_invariant` attribute from While/WhileRegion ops inside device cluster._
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    //
    // Synchronous scavenging happens for one of two reasons: if an allocation would
    // exceed the memory limit or whenever the heap grows in size, for some
    // definition of heap-growth. The intuition behind this second reason is that the
    // application had to grow the heap because existing fragments were not sufficiently
    // large to satisfy a page-level memory allocation, so we scavenge those fragments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    public class ManagedProxyClassGenerator extends AbstractProxyClassGenerator {
        /*
            Note: there is deliberately no internal synchronizing or caching at this level.
            Class generation should be performed behind a ManagedProxyFactory.
         */
    
        private static final String STATE_FIELD_NAME = "$state";
        private static final String TYPE_CONVERTER_FIELD_NAME = "$typeConverter";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    // Aliases are keyed by network/IP address. Example: "default/1.2.3.4".
    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    // that there is a workload behind a gateway, and rely on the gateway to handle the rest.
    // In this case, the key format will be "resource-uid". The resource can be a Pod, WorkloadEntry, etc.
    // These resources cannot be looked up on-demand.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

      public static <T extends @Nullable Object> Iterator<T> cycle(T... elements) {
        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Returns an Iterator that walks the specified array, nulling out elements behind it. This can
       * avoid memory leaks when an element is no longer necessary.
       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

      public static <T extends @Nullable Object> Iterator<T> cycle(T... elements) {
        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Returns an Iterator that walks the specified array, nulling out elements behind it. This can
       * avoid memory leaks when an element is no longer necessary.
       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	c.dispatching = true
    	// We are reusing the slice to avoid memory reallocations in every
    	// dispatchEvent() call. That may prevent Go GC from freeing items
    	// from previous phases that are sitting behind the current length
    	// of the slice, but there is only a limited number of those and the
    	// gain from avoiding memory allocations is much bigger.
    	c.watchersBuffer = c.watchersBuffer[:0]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    		w.WriteHeader(308)
    	})).ts
    	req, err := NewRequest("POST", ts.URL, strings.NewReader("some body"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	c := ts.Client()
    	req.GetBody = nil // so it can't rewind.
    	res, err := c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	res.Body.Close()
    	if res.StatusCode != 308 {
    		t.Errorf("status = %d; want %d", res.StatusCode, 308)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    // Because they are from a trap instead of from a saved pair,
    // the initial PC must not be rewound to the previous instruction.
    // (All the saved pairs record a PC that is a return address, so we
    // rewind it into the CALL instruction.)
    // If gp.m.libcall{g,pc,sp} information is available, it uses that information in preference to
    // the pc/sp/lr passed in.
    func tracebacktrap(pc, sp, lr uintptr, gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top