Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for _typ (0.08 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

     * The <a href="https://docs.gradle.org/current/userguide/java_gradle_plugin.html" target="_top">java-gradle-plugin</a> adds
     * a {@code validatePlugins} task, though if you cannot use this plugin then you need to register the task yourself.
     *
     * See the user guide for more information on
     * <a href="https://docs.gradle.org/current/userguide/incremental_build.html" target="_top">incremental build</a> and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/runtime/typekind.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "internal/abi"
    
    // isDirectIface reports whether t is stored directly in an interface value.
    func isDirectIface(t *_type) bool {
    	return t.Kind_&abi.KindDirectIface != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 356 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typebits/typebits.go

    		// treat it as such.
    		// 1. If it is a non-empty interface, the pointer points to an itab
    		//    which is always in persistentalloc space.
    		// 2. If it is an empty interface, the pointer points to a _type.
    		//   a. If it is a compile-time-allocated type, it points into
    		//      the read-only data section.
    		//   b. If it is a reflect-allocated type, it points into the Go heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.dtyp;
    
    
    import jcifs.Decodable;
    
    
    /**
     * @author mbechler
     *
     */
    public interface SecurityInfo extends Decodable {
    
        /**
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/TaskSuccessResult.java

        boolean isUpToDate();
    
        /**
         * Returns whether the output for this task was pulled from a build cache when using
         * <a href="https://docs.gradle.org/current/userguide/build_cache.html#sec:task_output_caching" target="_top">task output caching</a>.
         *
         * <p>NOTE: This will always be false if the Gradle version does
         * not support task output caching.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/internal/abi/switch.go

    	Inter   *InterfaceType
    	CanFail bool
    }
    type TypeAssertCache struct {
    	Mask    uintptr
    	Entries [1]TypeAssertCacheEntry
    }
    type TypeAssertCacheEntry struct {
    	// type of source value (a *runtime._type)
    	Typ uintptr
    	// itab to use for result (a *runtime.itab)
    	// nil if CanFail is set and conversion would fail.
    	Itab uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/defs_plan9_386.go

    	dx    uint32 /* ... */
    	cx    uint32 /* ... */
    	ax    uint32 /* ... */
    	gs    uint32 /* data segments */
    	fs    uint32 /* ... */
    	es    uint32 /* ... */
    	ds    uint32 /* ... */
    	trap  uint32 /* trap _type */
    	ecode uint32 /* error code (or zero) */
    	pc    uint32 /* pc */
    	cs    uint32 /* old context */
    	flags uint32 /* old flags */
    	sp    uint32
    	ss    uint32 /* old stack segment */
    }
    
    type sigctxt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. src/encoding/xml/typeinfo.go

    // it returns nil.
    func lookupXMLName(typ reflect.Type) (xmlname *fieldInfo) {
    	for typ.Kind() == reflect.Pointer {
    		typ = typ.Elem()
    	}
    	if typ.Kind() != reflect.Struct {
    		return nil
    	}
    	for i, n := 0, typ.NumField(); i < n; i++ {
    		f := typ.Field(i)
    		if f.Name != xmlName {
    			continue
    		}
    		finfo, err := structFieldInfo(typ, &f)
    		if err == nil && finfo.name != "" {
    			return finfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. hack/make-rules/clean.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    CLEAN_PATTERNS=(
      "_tmp"
      "doc_tmp"
      "test/e2e/generated/bindata.go"
    )
    
    for item in "${CLEAN_PATTERNS[@]}"; do
      # Shellcheck wants the ":?" because of paranoia about 'rm -rf /'. It will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 08 17:20:44 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/GradleDependencies.java

         */
        default Dependency gradleApi() {
            return getDependencyFactory().gradleApi();
        }
    
        /**
         * Creates a dependency on the <a href="https://docs.gradle.org/current/userguide/test_kit.html" target="_top">Gradle test-kit</a> API.
         *
         * @return The dependency.
         * @since 7.6
         */
        default Dependency gradleTestKit() {
            return getDependencyFactory().gradleTestKit();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 23:20:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top