Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for describeTo (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>A property of the project whose value is a closure. The closure is treated as a method and called with the provided parameters.
     * The property is located as described above.</li>
     *
     * </ul>
     */
    @HasInternalProtocol
    public interface Project extends Comparable<Project>, ExtensionAware, PluginAware {
        /**
         * The default project build file name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		check.convertUntyped(x, y.typ)
    		if x.mode == invalid {
    			return
    		}
    		check.convertUntyped(y, x.typ)
    		if y.mode == invalid {
    			x.mode = invalid
    			return
    		}
    	}
    }
    
    // exprKind describes the kind of an expression; the kind
    // determines if an expression is valid in 'statement context'.
    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    import (
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // An Error describes a failure to parse a regular expression
    // and gives the offending expression.
    type Error struct {
    	Code ErrorCode
    	Expr string
    }
    
    func (e *Error) Error() string {
    	return "error parsing regexp: " + e.Code.String() + ": `" + e.Expr + "`"
    }
    
    // An ErrorCode describes a failure to parse a regular expression.
    type ErrorCode string
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private TaskFinishEvent taskFinishedEvent(InternalOperationFinishedProgressEvent event) {
            // do not remove task descriptors because they might be needed to describe subsequent tasks' dependencies
            TaskOperationDescriptor descriptor = assertDescriptorType(TaskOperationDescriptor.class, getParentDescriptor(event.getDescriptor().getId()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	}
    	var p *abi.Imethod
    	for i := range t.Methods {
    		p = &t.Methods[i]
    		if t.nameOff(p.Name).Name() == name {
    			return t.Method(i), true
    		}
    	}
    	return
    }
    
    // A StructField describes a single field in a struct.
    type StructField struct {
    	// Name is the field name.
    	Name string
    
    	// PkgPath is the package path that qualifies a lower case (unexported)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	rate := int64(atomic.Load64(&mutexprofilerate))
    	if rate > 0 && cheaprand64()%rate == 0 {
    		saveblockevent(cycles, rate, skip+1, mutexProfile)
    	}
    }
    
    // Go interface to profile data.
    
    // A StackRecord describes a single execution stack.
    type StackRecord struct {
    	Stack0 [32]uintptr // stack trace for this record; ends at first 0 entry
    }
    
    // Stack returns the stack trace associated with the record,
    // a prefix of r.Stack0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/go/build/build.go

    }
    
    // NoGoError is the error used by [Import] to describe a directory
    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    // MultiplePackageError describes a directory containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint64(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_64 above, with one line added to maintain cx.
    	c0, c1, isTypeS := byte(0), byte(0), false
    	for i := len(text) - 1; i >= 0; i-- {
    		c0, c1 = text[i], c0
    		cx = cx<<8 | uint64(c1+1) // byte-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    		if !drop[m.Path] {
    			roots = append(roots, m)
    		}
    	}
    	roots = append(roots, replace...)
    	gover.ModSort(roots)
    	return newRequirements(rs.pruning, roots, rs.direct)
    }
    
    // A ConstraintError describes inconsistent constraints in EditBuildList
    type ConstraintError struct {
    	// Conflict lists the source of the conflict for each version in mustSelect
    	// that could not be selected due to the requirements of some other version in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top