Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 117 for preview (0.2 sec)

  1. CHANGELOG/CHANGELOG-1.9.md

    1. * Azure NSG rules can be consolidated to reduce the likelihood of hitting Azure resource limits (available only in regions where the Augmented Security Groups preview is available). ([#55740](https://github.com/kubernetes/kubernetes/pull/55740), [@itowlson](https://github.com/itowlson))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

    1. });
    2. // requireNonNull is safe because the first `size` elements have been filled in.
    3. Entry<K, V> firstEntry = requireNonNull(entryArray[0]);
    4. K prevKey = firstEntry.getKey();
    5. keys[0] = prevKey;
    6. values[0] = firstEntry.getValue();
    7. checkEntryNotNull(keys[0], values[0]);
    8. for (int i = 1; i < size; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/first-steps.md

    1. ```
    2.  
    3. </div>
    4.  
    5. ### Étape 3: créer une *opération de chemin*
    6.  
    7. #### Chemin
    8.  
    9. Chemin, ou "path" fait référence ici à la dernière partie de l'URL démarrant au premier `/`.
    10.  
    11. Donc, dans un URL tel que :
    12.  
    13. ```
    14. https://example.com/items/foo
    15. ```
    16.  
    17. ...le "path" serait :
    18.  
    19. ```
    20. /items/foo
    21. ```
    22.  
    23. /// info
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. docs/ko/docs/help-fastapi.md

    1. **FastAPI**가 어떻게 사용되고 있는지, 어떤 점이 마음에 들었는지, 어떤 프로젝트/회사에서 사용하고 있는지 등에 대해 듣고 싶습니다.
    2.  
    3. ## FastAPI에 투표하기
    4.  
    5. - [Slant에서 **FastAPI** 대해 투표하십시오](https://www.slant.co/options/34241/~fastapi-review).
    6. - [AlternativeTo**FastAPI** 대해 투표하십시오](https://alternativeto.net/software/fastapi/).
    7.  
    8. ## GitHub의 이슈로 다른사람 돕기
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

    1. }
    2. }
    3.  
    4. // The following try/catch block is a pseudo hacky way to get around a crash on Android 7.0
    5. // More details:
    6. // https://github.com/square/okhttp/issues/3245
    7. // https://android-review.googlesource.com/#/c/271775/
    8. try {
    9. source = rawSocket.source().buffer()
    10. sink = rawSocket.sink().buffer()
    11. } catch (npe: NullPointerException) {
    12. if (npe.message == NPE_THROW_WITH_NULL) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    1. Istio provides a few helper libraries to get started writing a controller. While these libraries help, there are still a lot of subtleties in correctly writing (and testing!) a controller properly.
    2.  
    3. To get started writing a controller, review the [Example Controller](../../pkg/kube/controllers/example_test.go).
    4.  
    5. ### Controllers overview
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. README.md

    1. b'Hello, TensorFlow!'
    2. ```
    3.  
    4. For more examples, see the
    5. [TensorFlow tutorials](https://www.tensorflow.org/tutorials/).
    6.  
    7. ## Contribution guidelines
    8.  
    9. **If you want to contribute to TensorFlow, be sure to review the
    10. [contribution guidelines](CONTRIBUTING.md). This project adheres to TensorFlow's
    11. [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to
    12. uphold this code.**
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. docs/es/docs/python-types.md

    1. Tristemente, no obtienes nada útil:
    2.  
    3. <img src="https://fastapi.tiangolo.com/img/python-types/image01.png">
    4.  
    5. ### Añade tipos
    6.  
    7. Vamos a modificar una única línea de la versión previa.
    8.  
    9. Vamos a cambiar exactamente este fragmento, los parámetros de la función, de:
    10.  
    11. ```Python
    12. first_name, last_name
    13. ```
    14.  
    15. a:
    16.  
    17. ```Python
    18. first_name: str, last_name: str
    19. ```
    20.  
    21. Eso es todo.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

    1. });
    2. // requireNonNull is safe because the first `size` elements have been filled in.
    3. Entry<K, V> firstEntry = requireNonNull(entryArray[0]);
    4. K prevKey = firstEntry.getKey();
    5. keys[0] = prevKey;
    6. values[0] = firstEntry.getValue();
    7. checkEntryNotNull(keys[0], values[0]);
    8. for (int i = 1; i < size; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    1. return "", "", fmt.Errorf("not a VS path: %s", path)
    2. }
    3. return ss[3], ss[2], nil
    4. }
    5.  
    6. // getIstioVirtualServicePathForSvcFromRoute returns something like "/apis/networking/v1alpha3/namespaces/default/virtual-service/reviews"
    7. func getIstioVirtualServicePathForSvcFromRoute(cd *configdump.Wrapper, svc corev1.Service, port int32) (string, error) {
    8. sPort := strconv.Itoa(int(port))
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 17:36:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
Back to top