Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for Extender (0.41 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    android.experimental.legacyTransform.forceNonIncremental=true
    ```
    
    ==== Change to `AntBuilder` parent class
    
    Previously, `org.gradle.api.AntBuilder` extended the deprecated `groovy.util.AntBuilder` class.
    It now extends `groovy.ant.AntBuilder`.
    
    ==== `PluginDeclaration` is not serializable
    
    `org.gradle.plugin.devel.PluginDeclaration` is not serializable anymore.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In Gradle 8.0, link:directory_layout.html#dir:gradle_user_home:configure_cache_cleanup[a new mechanism] was added to configure the cleanup and retention periods for various resources in Gradle User Home.
    In Gradle 8.8, this mechanism was extended to permit configuration of retention of local build cache entries, providing improved control and consistency.
    
    - Specifying `Cleanup.DISABLED` or `Cleanup.ALWAYS` will now prevent or force the cleanup of the local build cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					Left: name,
    					Right: &ExprList{
    						Exprs: []AST{operand},
    					},
    				}
    			}
    		}
    		var args []AST
    		for {
    			if len(st.str) == 0 {
    				st.fail("missing argument in vendor extended expressoin")
    			}
    			if st.str[0] == 'E' {
    				st.advance(1)
    				break
    			}
    			arg := st.templateArg(nil)
    			args = append(args, arg)
    		}
    		return &Binary{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/reflect/type.go

    				k := base + i*words + j
    				out[k/8] |= 1 << (k % 8)
    			}
    		}
    	}
    }
    
    // appendGCProg appends the GC program for the first ptrdata bytes of
    // typ to dst and returns the extended slice.
    func appendGCProg(dst []byte, typ *abi.Type) []byte {
    	if typ.Kind_&abi.KindGCProg != 0 {
    		// Element has GC program; emit one element.
    		n := uintptr(*(*uint32)(unsafe.Pointer(typ.GCData)))
    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