Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for Mystring (0.17 sec)

  1. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

            get() = annotationEntries.any { it.shortName?.asString() == "Incubating" }
    
        private
        val KtNamedDeclaration.typeParametersString: String
            get() = (this as? KtCallableDeclaration)?.typeParameterList?.let { "${it.text} " } ?: ""
    
        private
        val KtNamedDeclaration.fullyQualifiedName: String
            get() = fqName!!.asString()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

                noMoreInteractions()
            }
    
            where:
            vfsSpec << CHILD_IS_PREFIX
        }
    
        static ChildMap<FileSystemNode> sortedChildren(String path1, FileSystemNode child1, String path2, FileSystemNode child2) {
            def compared = PathUtil.getPathComparator(CASE_SENSITIVE).compare(path1, path2)
            def entry1 = new ChildMap.Entry<FileSystemNode>(path1, child1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. src/internal/trace/event/go122/event.go

    	EvStacks     // start of a section of the stack table [...EvStack]
    	EvStack      // stack table entry [ID, ...{PC, func string ID, file string ID, line #}]
    	EvStrings    // start of a section of the string dictionary [...EvString]
    	EvString     // string dictionary entry [ID, length, string]
    	EvCPUSamples // start of a section of CPU samples [...EvCPUSample]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            fun create(packageParts: List<Name>, classParts: List<Name>, callable: Name?): FqNameInterpretation {
                val packageName = FqName.fromSegments(packageParts.map { it.asString() })
                val relativeClassName = FqName.fromSegments(classParts.map { it.asString() })
    
                return when {
                    classParts.isEmpty() && callable == null -> FqNameInterpretationAsPackage(packageName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. src/go/types/predicates.go

    func isFloat(t Type) bool          { return isBasic(t, IsFloat) }
    func isComplex(t Type) bool        { return isBasic(t, IsComplex) }
    func isNumeric(t Type) bool        { return isBasic(t, IsNumeric) }
    func isString(t Type) bool         { return isBasic(t, IsString) }
    func isIntegerOrFloat(t Type) bool { return isBasic(t, IsInteger|IsFloat) }
    func isConstType(t Type) bool      { return isBasic(t, IsConstType) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

                source as List == sourceSet.allJava as List
                assert pmdClasspath == project.configurations.pmd
                assert ruleSets == ["java-braces", "java-unusedcode"]
                assert ruleSetConfig.asString() == "ruleset contents"
                assert ruleSetFiles.singleFile == project.file("my-ruleset.xml")
                assert reports.xml.outputLocation.asFile.get() == project.file("pmd-reports/${sourceSet.name}.xml")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                return it.fqNameForClassNameWithoutDollars.asString()
            }
    
            return if (containingSymbolOrSelf.symbolKind == KaSymbolKind.TOP_LEVEL) {
                (firSymbol.fir.getContainingFile()?.psi as? KtFile)
                    ?.takeUnless { it.isScript() }
                    ?.javaFileFacadeFqName?.asString()
            } else {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/time/example_test.go

    func ExampleTime_GoString() {
    	t := time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
    	fmt.Println(t.GoString())
    	t = t.Add(1 * time.Minute)
    	fmt.Println(t.GoString())
    	t = t.AddDate(0, 1, 0)
    	fmt.Println(t.GoString())
    	t, _ = time.Parse("Jan 2, 2006 at 3:04pm (MST)", "Feb 3, 2013 at 7:54pm (UTC)")
    	fmt.Println(t.GoString())
    
    	// Output:
    	// time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/expr.go

    		base.Errorf("invalid operation: %v (type %v does not support indexing)", n, t)
    		n.SetType(nil)
    		return n
    
    	case types.TSTRING, types.TARRAY, types.TSLICE:
    		n.Index = indexlit(n.Index)
    		if t.IsString() {
    			n.SetType(types.ByteType)
    		} else {
    			n.SetType(t.Elem())
    		}
    		why := "string"
    		if t.IsArray() {
    			why = "array"
    		} else if t.IsSlice() {
    			why = "slice"
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/debug/dwarf/const.go

    	TagCallSite          Tag = 0x48
    	TagCallSiteParameter Tag = 0x49
    	TagSkeletonUnit      Tag = 0x4A
    	TagImmutableType     Tag = 0x4B
    )
    
    func (t Tag) GoString() string {
    	if t <= TagTemplateAlias {
    		return "dwarf.Tag" + t.String()
    	}
    	return "dwarf." + t.String()
    }
    
    // Location expression operators.
    // The debug info encodes value locations like 8(R3)
    // as a sequence of these op codes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top