Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 162 for flavor (0.11 sec)

  1. releasenotes/notes/49029.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 49004
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 17:29:38 UTC 2024
    - 220 bytes
    - Viewed (0)
  2. releasenotes/notes/deprecate-istio_cni.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 49290
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 26 18:31:38 UTC 2024
    - 171 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ArrayListMultimap.java

      @VisibleForTesting transient int expectedValuesPerKey;
    
      /**
       * Creates a new, empty {@code ArrayListMultimap} with the default initial capacities.
       *
       * <p>This method will soon be deprecated in favor of {@code
       * MultimapBuilder.hashKeys().arrayListValues().build()}.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          ArrayListMultimap<K, V> create() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ArrayListMultimap.java

      @VisibleForTesting transient int expectedValuesPerKey;
    
      /**
       * Creates a new, empty {@code ArrayListMultimap} with the default initial capacities.
       *
       * <p>This method will soon be deprecated in favor of {@code
       * MultimapBuilder.hashKeys().arrayListValues().build()}.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          ArrayListMultimap<K, V> create() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/go/internal/typeparams/typeparams.go

    //
    // Note: IndexExpr (intentionally) does not wrap ast.Expr, as that leads to
    // accidental misuse such as encountered in golang/go#63933.
    //
    // TODO(rfindley): remove this helper, in favor of just having a helper
    // function that returns indices.
    type IndexExpr struct {
    	Orig    ast.Expr   // the wrapped expr, which may be distinct from the IndexListExpr below.
    	X       ast.Expr   // expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    ====
    
    .Installing manually
    [%collapsible]
    ====
    
    **Step 1 - link:{website}/releases[Download] the latest Gradle distribution**
    
    The distribution ZIP file comes in two flavors:
    
    - Binary-only (bin)
    - Complete (all) with docs and sources
    
    We recommend downloading the bin file; it is a smaller file that is quick to download (and the latest documentation is available online).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

     * load the file using ISO-8859-1 encoding.
     *
     * This class is only necessary because {@code sun.util.PropertyResourceBundleCharset} is not
     * available in Java 8.  This class can be removed in favor of {@code sun.util.PropertyResourceBundleCharset}
     * once Java 8 is no longer supported.
     */
    public class PropertyResourceBundleFallbackCharset extends Charset {
    
        public PropertyResourceBundleFallbackCharset() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If the {@code is}-getter is generated, and the {@code get}-getter is not ignored explicitly, then the generated
     * {@code is}-getter is automatically ignored in favor of the {@code get}-getter.
     * </p>
     */
    @ServiceScope(Scope.Global.class)
    public interface TypeAnnotationMetadataStore {
        TypeAnnotationMetadata getTypeAnnotationMetadata(Class<?> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/reflectlite/value.go

    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/reflect/makefunc.go

    	if v.flag&flagMethod == 0 {
    		panic("reflect: internal error: invalid use of makeMethodValue")
    	}
    
    	// Ignoring the flagMethod bit, v describes the receiver, not the method type.
    	fl := v.flag & (flagRO | flagAddr | flagIndir)
    	fl |= flag(v.typ().Kind())
    	rcvr := Value{v.typ(), v.ptr, fl}
    
    	// v.Type returns the actual type of the method value.
    	ftyp := (*funcType)(unsafe.Pointer(v.Type().(*rtype)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top