Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 631 - 640 of 793 for roots (0.85 seconds)

  1. helm-releases/minio-3.1.1.tgz

    install --set existingSecret=my-minio-secret minio/minio ``` The following fields are expected in the secret: | .data.<key> in Secret | Corresponding variable | Description | Required | |:-------- | `rootUser` | `rootUser` | Root user. | yes | | `rootPassword` | `rootPassword` | Root password. | yes | All corresponding variables will be ignored in values file. Configure TLS ---------- To enable TLS for MinIO containers, acquire TLS certificates from a CA or create self-signed certificates. While creating...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Sep 13 16:43:10 GMT 2021
    - 14.3K bytes
    - Click Count (0)
  2. helm-releases/minio-3.1.6.tgz

    install --set existingSecret=my-minio-secret minio/minio ``` The following fields are expected in the secret: | .data.<key> in Secret | Corresponding variable | Description | Required | |:-------- | `rootUser` | `rootUser` | Root user. | yes | | `rootPassword` | `rootPassword` | Root password. | yes | All corresponding variables will be ignored in values file. Configure TLS ---------- To enable TLS for MinIO containers, acquire TLS certificates from a CA or create self-signed certificates. While creating...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Sep 23 19:56:39 GMT 2021
    - 14.5K bytes
    - Click Count (0)
  3. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      }
    
      private static AssertionError sanityError(
          Class<?> cls, List<String> explicitTestNames, String description, Throwable e) {
        String message =
            String.format(
                Locale.ROOT,
                "Error in automated %s of %s\n"
                    + "If the class is better tested explicitly, you can add %s() to %sTest",
                description,
                cls,
                explicitTestNames.get(0),
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/hash/HashingTest.java

          HashFunction func = cell.getRowKey();
          String input = cell.getColumnKey();
          String expected = cell.getValue();
          assertWithMessage(String.format(Locale.ROOT, "Known hash for hash(%s, UTF_8) failed", input))
              .that(func.hashString(input, UTF_8).toString())
              .isEqualTo(expected);
        }
      }
    
      public void testNullPointers() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 26.7K bytes
    - Click Count (2)
  5. docs/zh-hant/docs/tutorial/first-steps.md

    FastAPI 是開源並基於標準的。你可以把 FastAPI 應用部署到你選擇的任何雲端供應商。
    
    依照你的雲端供應商的指南部署 FastAPI 應用吧。🤓
    
    ## 回顧 { #recap }
    
    * 引入 `FastAPI`。
    * 建立一個 `app` 實例。
    * 寫一個「路徑操作裝飾器」,像是 `@app.get("/")`。
    * 定義一個「路徑操作函式」;例如,`def root(): ...`。
    * 使用命令 `fastapi dev` 執行開發伺服器。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

          spec.refreshDuration = duration;
          spec.refreshTimeUnit = unit;
        }
      }
    
      @FormatMethod
      private static String format(String format, Object... args) {
        return String.format(Locale.ROOT, format, args);
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  7. guava/src/com/google/common/cache/CacheBuilderSpec.java

          spec.refreshDuration = duration;
          spec.refreshTimeUnit = unit;
        }
      }
    
      @FormatMethod
      private static String format(String format, Object... args) {
        return String.format(Locale.ROOT, format, args);
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/first-steps.md

    * `FastAPI` import edin.
    * Bir `app` instance'ı oluşturun.
    * `@app.get("/")` gibi decorator'ları kullanarak bir **path operation decorator** yazın.
    * Bir **path operation function** tanımlayın; örneğin `def root(): ...`.
    * `fastapi dev` komutunu kullanarak geliştirme sunucusunu çalıştırın.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  9. guava-testlib/src/com/google/common/testing/GcFinalization.java

          latch.countDown();
        }
      }
    
      @FormatMethod
      private static RuntimeException formatRuntimeException(String format, Object... args) {
        return new RuntimeException(String.format(Locale.ROOT, format, args));
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 20:19:19 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java

                    private String packageName;
    
                    @Override
                    public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
                        // First we visit the root directory
                        if (packageName == null) {
                            // And it package is empty string regardless of the directory name
                            packageName = "";
                        } else {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 17.6K bytes
    - Click Count (0)
Back to Top