Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for rebind (0.16 sec)

  1. src/cmd/go/internal/load/pkg.go

    	i, ok := findInternal(p.ImportPath)
    	if !ok {
    		return nil
    	}
    
    	// Internal is present.
    	// Map import path back to directory corresponding to parent of internal.
    	if i > 0 {
    		i-- // rewind over slash in ".../internal"
    	}
    
    	if p.Module == nil {
    		parent := p.Dir[:i+len(p.Dir)-len(p.ImportPath)]
    
    		if str.HasFilePathPrefix(filepath.Clean(srcDir), filepath.Clean(parent)) {
    			return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	if a1.built == a.Target {
    		a.built = a.Target
    		if !a.buggyInstall {
    			b.cleanup(a1)
    		}
    		// Whether we're smart enough to avoid a complete rebuild
    		// depends on exactly what the staleness and rebuild algorithms
    		// are, as well as potentially the state of the Go build cache.
    		// We don't really want users to be able to infer (or worse start depending on)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        } : (tensor<4xi32>, tensor<1x1x1x1xf32>, tensor<1x1x1x1xf32>) -> tensor<?x?x?x?xf32>
        func.return %1 : tensor<?x?x?x?xf32>
      }
    
      // Tests where tf.Const's value needs to be refined.
    
      func.func @const_refine() -> tensor<*xi32> {
        %0 = "tf.Const"() {value = dense<[3, 2]> : tensor<2xi32>} : () -> tensor<*xi32>
        // CHECK: "tf.Const"
        // CHECK-SAME: -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    					errs = AppendValidation(errs, fmt.Errorf("targetPort has no impact on Sidecars"))
    				}
    				bind := egress.GetBind()
    				captureMode := egress.GetCaptureMode()
    				errs = AppendValidation(errs, validateSidecarEgressPortBindAndCaptureMode(egress.Port, bind, captureMode))
    
    				if egress.Port.Number == 0 {
    					if _, found := udsMap[bind]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // The reported import path for a test binary is the import path of
    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    // for a particular test binary is followed by a space and the name of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	testCases := []struct {
    		name       string
    		failureN   int
    		failureErr error
    		// Note that we can't just re-use the Request object across calls to c.Do
    		// because we need to rewind Body between calls.  (GetBody is only used to
    		// rewind Body on failure and redirects, not just because it's done.)
    		req       func() *Request
    		reqString string
    	}{
    		{
    			name: "IdempotentNoBodySomeWritten",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          smartAssertTrue(inputs, e, intersect(inputs, ImmutableSet.of(doneCancelled)));
        }
      }
    
      /**
       * {@link Futures#allAsList(Iterable)} or {@link Futures#successfulAsList(Iterable)}, hidden
       * behind a common interface for testing.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private interface Merger {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          smartAssertTrue(inputs, e, intersect(inputs, ImmutableSet.of(doneCancelled)));
        }
      }
    
      /**
       * {@link Futures#allAsList(Iterable)} or {@link Futures#successfulAsList(Iterable)}, hidden
       * behind a common interface for testing.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private interface Merger {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      safe-bind-mount "${mountpoint}" "${bindpoint}"
    }
    
    # Bind mounts device at mountpoint to bindpoint
    function safe-bind-mount(){
      local mountpoint="${1}"
      local bindpoint="${2}"
    
      # Mount device to the mountpoint
      mkdir -p "${bindpoint}"
      echo "Binding '${mountpoint}' at '${bindpoint}'"
      mount --bind "${mountpoint}" "${bindpoint}"
      chmod a+w "${bindpoint}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				"node-a": framework.Success,
    				"node-b": framework.Success,
    				"node-x": framework.Success,
    				"node-y": framework.Success,
    			},
    		},
    		{
    			// TODO(Huang-Wei): maybe document this to remind users that typos on node labels
    			// can cause unexpected behavior
    			name: "pods spread across zones as 1/2 due to absence of label 'zone' on node-b",
    			pod: st.MakePod().Name("p").Label("foo", "").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top