Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 334 for Mystring (0.15 sec)

  1. 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)
  2. 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)
  3. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        ImmutableSet<String> eightColons =
            ImmutableSet.of("::7:6:5:4:3:2:1", "::7:6:5:4:3:2:0", "7:6:5:4:3:2:1::", "0:6:5:4:3:2:1::");
    
        for (String ipString : eightColons) {
          // Shouldn't hit DNS, because it's an IP string literal.
          InetAddress ipv6Addr = InetAddress.getByName(ipString);
          assertEquals(ipv6Addr, InetAddresses.forString(ipString));
          assertTrue(InetAddresses.isInetAddress(ipString));
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            is KaTypeParameterSymbol -> this.nameOrAnonymous.asString()
            is KaVariableSymbol -> "${if (isVal) "val" else "var"} $name: ${returnType.render()}"
            is KaClassLikeSymbol -> classId?.toString() ?: nameOrAnonymous.asString()
            is KaPackageSymbol -> fqName.toString()
            is KaEnumEntrySymbol -> callableId?.toString() ?: name.asString()
            is KaSymbol -> DebugSymbolRenderer().render(analysisSession, this)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            return replaceAll(Pattern.compile(regex), inString, byString);
        }
    
        private static String replaceAll(Pattern pattern, CharSequence inString, String byString) {
            return pattern.matcher(inString).replaceAll(byString);
        }
    
        /**
         * Converts all line separators in the specified string to the platform's line separator.
         */
        public static String toPlatformLineSeparators(String str) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top