Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 334 for Mystring (0.1 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStepTest.groovy

            def delegateDuration = Duration.ofMillis(123)
            def outputSnapshots = ImmutableSortedMap.<String, FileSystemSnapshot>of(
                "outputDir", Mock(FileSystemSnapshot),
                "outputFile", Mock(FileSystemSnapshot),
            )
            def filteredOutputSnapshots = ImmutableSortedMap.<String, FileSystemSnapshot>of(
                "outputDir", Mock(FileSystemSnapshot)
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. 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)
  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. operator/pkg/util/reflect.go

    func kindOf(value any) reflect.Kind {
    	if value == nil {
    		return reflect.Invalid
    	}
    	return reflect.TypeOf(value).Kind()
    }
    
    // IsString reports whether value is a string type.
    func IsString(value any) bool {
    	return kindOf(value) == reflect.String
    }
    
    // IsPtr reports whether value is a ptr type.
    func IsPtr(value any) bool {
    	return kindOf(value) == reflect.Ptr
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K 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. 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. subprojects/core/src/main/java/org/gradle/api/internal/resources/ApiTextResourceAdapter.java

            this.tempFileProvider = tempFileProvider;
        }
    
        @Override
        public String asString() {
            return getWrappedTextResource().getText();
        }
    
        @Override
        public Reader asReader() {
            return getWrappedTextResource().getAsReader();
        }
    
        @Override
        public File asFile(String targetCharset) {
            try {
                File file = getWrappedTextResource().getFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 5K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationOverridesProvider/AbstractOverriddenDeclarationProviderTest.kt

                        is KaCallableSymbol -> parent.callableId?.toString()
                        else -> null
                    }
    
                    if (qualifiedName != null) {
                        chunks += qualifiedName
                        continue
                    }
                }
    
                chunks += (parent as? KaNamedSymbol)?.name?.asString() ?: "<no name>"
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top