Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for Mystring (0.17 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

            return new ModelVersionParser() {
                @Override
                public Version parseVersion(String version) {
                    requireNonNull(version, "version");
                    return new Version() {
                        @Override
                        public String asString() {
                            return version;
                        }
    
                        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  7. 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)
  8. 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)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

            correspondingImport.importPath?.pathStr
        }
    
        val canonicalSignature = signatureWriter.toString()
        require(!canonicalSignature.contains(SpecialNames.ANONYMOUS_STRING))
    
        if (canonicalSignature.contains("L<error>")) return null
        if (canonicalSignature.contains(SpecialNames.NO_NAME_PROVIDED.asString())) return null
    
        val signature = SignatureParsing.CharIterator(canonicalSignature)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                        if (!allowLocal) {
                            return null
                        }
    
                        localName += current.name.asString()
                    } else {
                        className += current.name.asString()
                    }
                }
                is PropertyAccessorDescriptor -> {} // Filter out property accessors
                is CallableDescriptor -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top