Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 157 for Mystring (0.3 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginBuildStateIntegrationTest.groovy

                        assert buildState.buildInvocationId == services.get(${BuildInvocationScopeId.name}).id.asString()
                        assert buildState.workspaceId == services.get(${WorkspaceScopeId.name}).id.asString()
                        assert buildState.userId == services.get(${UserScopeId.name}).id.asString()
    
                        assert (buildState.daemonScanInfo != null) == ${GradleContextualExecuter.isDaemon()}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanScopeIdsIntegrationTest.groovy

            """
            succeeds("help")
    
            then:
            def buildInvocationId = scopeIds.buildInvocationId.asString()
            def workspaceId = scopeIds.workspaceId.asString()
            def userId = scopeIds.userId.asString()
    
            output.contains "ids: [buildInvocation: $buildInvocationId, workspace: $workspaceId, user: $userId]"
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/DefaultBuildScanScopeIds.java

            this.userId = userId;
        }
    
        @Override
        public String getBuildInvocationId() {
            return buildInvocationId.getId().asString();
        }
    
        @Override
        public String getWorkspaceId() {
            return workspaceId.getId().asString();
        }
    
        @Override
        public String getUserId() {
            return userId.getId().asString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:58:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/crypto/x509/internal/macos/corefoundation.go

    	return bytes.Clone(src)
    }
    
    // CFStringToString returns a Go string representation of the passed
    // in CFString, or an empty string if it's invalid.
    func CFStringToString(ref CFRef) string {
    	data, err := CFStringCreateExternalRepresentation(ref)
    	if err != nil {
    		return ""
    	}
    	b := CFDataToSlice(data)
    	CFRelease(data)
    	return string(b)
    }
    
    // TimeToCFDateRef converts a time.Time into an apple CFDateRef.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/TransformersTest.groovy

            result.is arg
        }
    
        def "as string"() {
            expect:
            asString().transform(1) == "1"
            asString().transform(null) == null
        }
    
        def "to URL"() {
            expect:
            toURL().transform(new URI("http://localhost:80/path")) == new URL("http://localhost:80/path")
        }
    
        def "by type"() {
            expect:
            type().transform("foo") == String
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

            return ITEM_ENDPOINT_SUFFIX + "/" + dictId;
        }
    
        @BeforeEach
        protected void initializeDictId() {
            final Map<String, Object> searchBody = new HashMap<>();
            final String response = checkMethodBase(searchBody).get("/api/admin/dict").asString();
            final List<Map<String, String>> dicts = JsonPath.from(response).getList("response.settings");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue36705.go

    // #include <stdlib.h>
    // #include <unistd.h>
    import "C"
    
    import "os"
    
    func main() {
    	os.Setenv("FOO", "bar")
    	s := C.GoString(C.getenv(C.CString("FOO")))
    	if s != "bar" {
    		panic("bad setenv, environment variable only has value \"" + s + "\"")
    	}
    	os.Unsetenv("FOO")
    	s = C.GoString(C.getenv(C.CString("FOO")))
    	if s != "" {
    		panic("bad unsetenv, environment variable still has value \"" + s + "\"")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 649 bytes
    - Viewed (0)
  8. src/internal/syscall/unix/net_darwin.go

    func libc_gai_strerror_trampoline()
    
    func GaiStrerror(ecode int) string {
    	r1, _, _ := syscall_syscall(abi.FuncPCABI0(libc_gai_strerror_trampoline),
    		uintptr(ecode),
    		0, 0)
    	return GoString((*byte)(unsafe.Pointer(r1)))
    }
    
    // Implemented in the runtime package.
    func gostring(*byte) string
    
    func GoString(p *byte) string {
    	return gostring(p)
    }
    
    //go:linkname syscall_syscall syscall.syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue4029.go

    	}
    }
    
    func loadThySelf(t *testing.T, symbol string) {
    	this_process := C.dlopen4029(nil, C.RTLD_NOW)
    	if this_process == 0 {
    		t.Error("dlopen:", C.GoString(C.dlerror()))
    		return
    	}
    	defer C.dlclose4029(this_process)
    
    	symbol_address := C.dlsym4029(this_process, C.CString(symbol))
    	if symbol_address == 0 {
    		t.Error("dlsym:", C.GoString(C.dlerror()))
    		return
    	}
    	t.Log(symbol, symbol_address)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeCreator.kt

            if (descriptor == null) {
                val name = when (builder) {
                    is KaClassTypeBuilder.ByClassId -> builder.classId.asString()
                    is KaClassTypeBuilder.BySymbol ->
                        builder.symbol.classId?.asString()
                            ?: builder.symbol.name?.asString()
                            ?: SpecialNames.ANONYMOUS_STRING
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top