Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,266 for maxs (0.04 sec)

  1. guava/src/com/google/common/collect/ComputationException.java

     *
     * @author Bob Lee
     * @since 2.0
     * @deprecated This exception is no longer thrown by {@code com.google.common}. Previously, it was
     *     thrown by {@link MapMaker} computing maps. When support for computing maps was removed from
     *     {@code MapMaker}, it was added to {@code CacheBuilder}, which throws {@code
     *     ExecutionException}, {@code UncheckedExecutionException}, and {@code ExecutionError}. Any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenRepositoryContentDescriptor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.repositories;
    
    import com.google.common.collect.Maps;
    import com.google.common.collect.Sets;
    import org.gradle.api.Action;
    import org.gradle.api.artifacts.repositories.MavenRepositoryContentDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/first-steps.md

    "Operação" aqui se refere a um dos "métodos" HTTP.
    
    Um dos:
    
    * `POST`
    * `GET`
    * `PUT`
    * `DELETE`
    
    ...e os mais exóticos:
    
    * `OPTIONS`
    * `HEAD`
    * `PATCH`
    * `TRACE`
    
    No protocolo HTTP, você pode se comunicar com cada rota usando um (ou mais) desses "métodos".
    
    ---
    
    Ao construir APIs, você normalmente usa esses métodos HTTP para executar uma ação específica.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/security/first-steps.md

    	* O usuário clica no frontend para ir à outra seção daquele frontend do aplicativo web.
    	* O frontend precisa buscar mais dados daquela API.
    		* Mas precisa de autenticação para aquele endpoint em específico.
    		* Então, para autenticar com nossa API, ele manda um header de `Autorização` com o valor `Bearer` mais o token.
    		* Se o token contém `foobar`, o conteúdo do header de `Autorização` será: `Bearer foobar`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. docs/fr/docs/benchmarks.md

        * Si on n'utilisait pas FastAPI mais directement Starlette (ou un outil équivalent comme Sanic, Flask, Responder, etc) il faudrait implémenter la validation des données et la sérialisation par nous-même. Le résultat serait donc le même dans les deux cas mais du travail supplémentaire serait à réaliser avec Starlette, surtout en considérant que la validation des données et la sérialisation représentent...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kube/krt/static.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    import (
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    )
    
    type staticList[T any] struct {
    	vals map[Key[T]]T
    	id   collectionUID
    }
    
    func NewStaticCollection[T any](vals []T) Collection[T] {
    	res := map[Key[T]]T{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/FilePropertyVisitState.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSortedMap;
    import com.google.common.collect.Maps;
    import org.gradle.api.internal.tasks.properties.InputFilePropertySpec;
    import org.gradle.api.internal.tasks.properties.PropertySpec;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/encoding/xml/read.go

    //
    // Unmarshal maps an XML element to a string or []byte by saving the
    // concatenation of that element's character data in the string or
    // []byte. The saved []byte is never nil.
    //
    // Unmarshal maps an attribute value to a string or []byte by saving
    // the value in the string or slice.
    //
    // Unmarshal maps an attribute value to an [Attr] by saving the attribute,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java

     *
     * @author Hayward Chan
     */
    final class Platform {
      static <K, V> Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return Maps.newHashMapWithExpectedSize(expectedSize);
      }
    
      static <K, V> Map<K, V> newLinkedHashMapWithExpectedSize(int expectedSize) {
        return Maps.newLinkedHashMapWithExpectedSize(expectedSize);
      }
    
      static <E> Set<E> newHashSetWithExpectedSize(int expectedSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 29 18:16:45 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/DefaultProcessForkOptions.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.process.internal;
    
    import com.google.common.collect.Maps;
    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.process.ProcessForkOptions;
    
    import java.io.File;
    import java.util.HashMap;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top