Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for Ufour (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    [[working_with_files_in_lazy_properties]]
    == Working with files
    
    In <<working_with_files.adoc#working_with_files,Working with Files>>, we introduced four collection types for `File`-like objects:
    
    [%header%autowidth,compact]
    |===
    | Read-only Type | Configurable Type
    
    | link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    the directory DIR/src/P for some DIR listed in the GOPATH
    environment variable (For more details see: 'go help gopath').
    
    If no import paths are given, the action applies to the
    package in the current directory.
    
    There are four reserved names for paths that should not be used
    for packages to be built with the go tool:
    
    - "main" denotes the top-level package in a stand-alone executable.
    
    - "all" expands to all packages found in all the GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

            !filter_type.hasStaticShape())
          return failure();
    
        Value input = tf_op.getInput();
        RankedTensorType input_type =
            mlir::dyn_cast<RankedTensorType>(input.getType());
        // Only rank size four input will be only available by the tf.Conv2D
        // operator verification.
        if (!input_type || input_type.isDynamicDim(3)) {
          return failure();
        }
        // Check if the given op is based on grouped convolution.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. src/net/http/clientserver_test.go

    			io.WriteString(w, "<html><body>hi</body></html>")
    		},
    	}.run(t)
    }
    
    func TestH12_RequestContentLength_Known_NonZero(t *testing.T) {
    	h12requestContentLength(t, func() io.Reader { return strings.NewReader("FOUR") }, 4)
    }
    
    func TestH12_RequestContentLength_Known_Zero(t *testing.T) {
    	h12requestContentLength(t, func() io.Reader { return nil }, 0)
    }
    
    func TestH12_RequestContentLength_Unknown(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// param is a generic pointer parameter field used to pass
    	// values in particular contexts where other storage for the
    	// parameter would be difficult to find. It is currently used
    	// in four ways:
    	// 1. When a channel operation wakes up a blocked goroutine, it sets param to
    	//    point to the sudog of the completed blocking operation.
    	// 2. By gcAssistAlloc1 to signal back to its caller that the goroutine completed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string remotePilotAddress = 48;
    
      // Specifies the configution of istiod
      IstiodConfig istiod = 54;
    
      // Configure the Pilot certificate provider.
      // Currently, four providers are supported: "kubernetes", "istiod", "custom" and "none".
      string pilotCertProvider = 56;
    
      // Configure the policy for validating JWT.
      // This is deprecated and has no effect.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

        abstract Equivalence<Object> defaultEquivalence();
      }
    
      /**
       * A helper object for operating on {@link InternalEntry} instances in a type-safe and efficient
       * manner.
       *
       * <p>For each of the four combinations of strong/weak key and strong/weak value, there are
       * corresponding {@link InternalEntry}, {@link Segment}, and {@link InternalEntryHelper}
       * implementations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	var src []byte
    	if 0 <= off && off < int64(len(lsym.P)) {
    		src = lsym.P[off:]
    	}
    	buf := make([]byte, 2)
    	copy(buf, src)
    	return byteorder.Uint16(buf)
    }
    
    // read32 reads four bytes from the read-only global sym at offset off.
    func read32(sym interface{}, off int64, byteorder binary.ByteOrder) uint32 {
    	lsym := sym.(*obj.LSym)
    	var src []byte
    	if 0 <= off && off < int64(len(lsym.P)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        abstract Equivalence<Object> defaultEquivalence();
      }
    
      /**
       * A helper object for operating on {@link InternalEntry} instances in a type-safe and efficient
       * manner.
       *
       * <p>For each of the four combinations of strong/weak key and strong/weak value, there are
       * corresponding {@link InternalEntry}, {@link Segment}, and {@link InternalEntryHelper}
       * implementations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	}
    	return ret
    }
    
    // The lookupCache caches ArrayOf, ChanOf, MapOf and SliceOf lookups.
    var lookupCache sync.Map // map[cacheKey]*rtype
    
    // A cacheKey is the key for use in the lookupCache.
    // Four values describe any of the types we are looking for:
    // type kind, one or two subtypes, and an extra integer.
    type cacheKey struct {
    	kind  Kind
    	t1    *abi.Type
    	t2    *abi.Type
    	extra uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top