Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for psstrings (0.15 sec)

  1. src/go/types/basic.go

    // Properties of basic types.
    const (
    	IsBoolean BasicInfo = 1 << iota
    	IsInteger
    	IsUnsigned
    	IsFloat
    	IsComplex
    	IsString
    	IsUntyped
    
    	IsOrdered   = IsInteger | IsFloat | IsString
    	IsNumeric   = IsInteger | IsFloat | IsComplex
    	IsConstType = IsBoolean | IsNumeric | IsString
    )
    
    // A Basic represents a basic type.
    type Basic struct {
    	kind BasicKind
    	info BasicInfo
    	name string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. test/named1.go

    // and preserve the type.
    // Does not compile.
    
    package main
    
    type Bool bool
    
    type Map map[int]int
    
    func (Map) M() {}
    
    type Slice []byte
    
    var slice Slice
    
    func asBool(Bool)     {}
    func asString(String) {}
    
    type String string
    
    func main() {
    	var (
    		b    Bool = true
    		i, j int
    		c    = make(chan int)
    		m    = make(Map)
    	)
    
    	asBool(b)
    	asBool(!b)
    	asBool(true)
    	asBool(*&b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 984 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            logger.info("Crawler terminated");
        }
    
        protected static String createWebConfig(final Map<String, Object> requestBody) {
            String response = checkMethodBase(requestBody).put("/api/admin/webconfig/setting").asString();
            JsonPath jsonPath = JsonPath.from(response);
            assertTrue(jsonPath.getBoolean("response.created"));
            assertEquals(0, jsonPath.getInt("response.status"));
            return jsonPath.getString("response.id");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                    val packageInternalName = parent.fqName.asString().replace('.', '/')
                    "$packageInternalName/$selfName"
                }
                is ClassDescriptor -> {
                    val parentInternalName = computeClassInternalName(parent)
                    if (parentInternalName != null) "$parentInternalName$$selfName" else null
                }
                else -> selfName.asString()
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

    class VfsRelativePathTest extends Specification {
    
        def "convert absolute path '#absolutePath' to relative path '#relativePath'"() {
            expect:
            VfsRelativePath.of(absolutePath).asString == relativePath
    
            where:
            absolutePath           | relativePath
            'C:\\'                 | 'C:'
            'C:\\Users\\user'      | 'C:\\Users\\user'
            '/'                    | ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/ContinuousIncrementalBuildOutputOriginIntegrationTest.groovy

            originBuildInvocationId(":t1") == null
            originBuildInvocationId(":t2") == scopeIds.buildInvocationIds[0].asString()
    
            when:
            update(i2, "2")
    
            then:
            succeeds("t")
            afterBuild()
            originBuildInvocationId(":t1") == scopeIds.buildInvocationIds[1].asString()
            originBuildInvocationId(":t2") == null
    
            and:
            with(scopeIds.workspaceIds) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. test/ken/rob2.go

    func atom(i int) *Slist { // BUG: uses tokenbuf; should take argument)
    	var slist *Slist
    
    	slist = new(Slist)
    	if token == '0' {
    		slist.atom.integer = i
    		slist.isstring = false
    	} else {
    		slist.atom.str = string(tokenbuf[0:tokenlen])
    		slist.isstring = true
    	}
    	slist.isatom = true
    	return slist
    }
    
    func atoi() int { // BUG: uses tokenbuf; should take argument)
    	var v int = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/src/main/objcpp/greeter.mm

    #import <iostream>
    #import "greeter.h"
    
    @implementation Greeter
    
    - (void) sayHello {
        NSString *helloWorld = @"Hello world!";
        std::cout << [helloWorld UTF8String] << std::endl;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 192 bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                classId.asString().replace('/', '.') to arrayClassId.asString().replace('/', '.')
            }
            StandardClassIds.unsignedArrayTypeByElementType.mapTo(this) { (classId, arrayClassId) ->
                classId.asString().replace('/', '.') to arrayClassId.asString().replace('/', '.')
            }
        }.toMap()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

            JavaSourceQuery(
                false,
                object : PredicateVisitor() {
                    override fun visit(declaration: MethodDeclaration, arg: Unit?): Boolean? {
                        if (declaration.name?.asString() == method.name && declaration.hasOverrideAnnotation) {
                            return true
                        }
                        return null
                    }
                }
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top