Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for create_all (0.25 sec)

  1. android/guava-tests/test/com/google/common/math/StatsTesting.java

        }
    
        @Override
        public String toString() {
          return values.toString();
        }
    
        private static ImmutableList<ManyValues> createAll() {
          ImmutableList.Builder<ManyValues> builder = ImmutableList.builder();
          double[] values = new double[5];
          for (double first : ImmutableList.of(1.1, POSITIVE_INFINITY, NEGATIVE_INFINITY, NaN)) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. scripts/people.py

        subprocess.run(["git", "commit", "-m", message], check=True)
        logging.info("Pushing branch")
        subprocess.run(["git", "push", "origin", branch_name], check=True)
        logging.info("Creating PR")
        pr = repo.create_pull(title=message, body=message, base="master", head=branch_name)
        logging.info(f"Created PR: {pr.number}")
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  3. scripts/translate.py

            + "\n\nIn most cases, it's better to make PRs updating that file so that the LLM can do a better job generating the translations than suggesting changes in this PR."
        )
        pr = gh_repo.create_pull(title=message, body=body, base="master", head=branch_name)
        print(f"Created PR: {pr.number}")
        print("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            else -> throw expected
          }
        }
        assertThat(server.requestCount).isEqualTo(0)
      }
    
      @Test
      fun connectViaProxyUsingProxyArg() {
        testConnectViaProxy(ProxyConfig.CREATE_ARG)
      }
    
      @Test
      fun connectViaProxyUsingProxySystemProperty() {
        testConnectViaProxy(ProxyConfig.PROXY_SYSTEM_PROPERTY)
      }
    
      @Test
      fun connectViaProxyUsingHttpProxySystemProperty() {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top