Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sqlite (0.06 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                        String[] splits = testSuiteAndCase.
                            replace('[', ' ').
                            replace(']', ' ').
                            split("[. ]");
                        String testSuite;
                        String testCase;
                        if (OperatingSystem.current().isMacOsX()) {
                            testSuite = splits[2];
                            testCase = splits[3];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

    import com.google.common.collect.HashBiMap;
    import com.google.common.collect.Interner;
    
    import java.io.IOException;
    
    /**
     * Efficiently serializes hierarchical names, like Java class names or relative paths of resources.
     * Splits names into prefixes and suffixes along package separators, inner class separators, file separators and camel case borders.
     * Reuses these prefixes and suffixes to efficiently store names or parts of names it has seen before.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top