Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for Mystring (0.1 sec)

  1. src/cmd/cgo/internal/test/test.go

    		t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	if l := len(C.GoString(C.dangerousString1())); l != 123 {
    		t.Errorf("Incorrect string length - got %d, want 123", l)
    	}
    	if l := len(C.GoString(C.dangerousString2())); l != 4096+123 {
    		t.Errorf("Incorrect string length - got %d, want %d", l, 4096+123)
    	}
    }
    
    // issue 25143
    
    func issue25143sum(ns ...C.int) C.int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. internal/s3select/sql/value.go

    	return 0, false
    }
    
    // ToInt returns the value if int.
    func (v Value) ToInt() (val int64, ok bool) {
    	val, ok = v.value.(int64)
    	return
    }
    
    // ToString returns the value if string.
    func (v Value) ToString() (val string, ok bool) {
    	val, ok = v.value.(string)
    	return
    }
    
    // Equals returns whether the values strictly match.
    // Both type and value must match.
    func (v Value) Equals(b Value) (ok bool) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. api/go1.10.txt

    pkg debug/macho, method (RelocTypeARM) GoString() string
    pkg debug/macho, method (RelocTypeARM) String() string
    pkg debug/macho, method (RelocTypeARM64) GoString() string
    pkg debug/macho, method (RelocTypeARM64) String() string
    pkg debug/macho, method (RelocTypeGeneric) GoString() string
    pkg debug/macho, method (RelocTypeGeneric) String() string
    pkg debug/macho, method (RelocTypeX86_64) GoString() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  10. 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)
Back to top