Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for tienes (0.44 sec)

  1. docs/fr/docs/features.md

    Ou, en d'autres termes, pas besoin d'eux, importez le code que vous voulez et utilisez le.
    
    Tout intégration est conçue pour être si simple à utiliser (avec des dépendances) que vous pouvez créer un "plug-in" pour votre application en deux lignes de code utilisant la même syntaxe que celle de vos *path operations*
    
    ### Testé
    
    * 100% <abbr title="La quantité de code qui est testé automatiquement">de couverture de test</abbr>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/security/simple-oauth2.md

    Wenn die Passwörter nicht übereinstimmen, geben wir denselben Fehler zurück.
    
    #### Passwort-Hashing
    
    „Hashing“ bedeutet: Konvertieren eines Inhalts (in diesem Fall eines Passworts) in eine Folge von Bytes (ein schlichter String), die wie Kauderwelsch aussieht.
    
    Immer wenn Sie genau den gleichen Inhalt (genau das gleiche Passwort) übergeben, erhalten Sie genau den gleichen Kauderwelsch.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/expand_calls.go

    			// Use the mem that comes from the store operation.
    			storeAddr := store.Args[0]
    			mem := store.Args[2]
    			if len(regs) > 0 {
    				// Cannot do a rewrite that builds up a result from pieces; instead, copy pieces to the store operation.
    				var rc registerCursor
    				rc.init(regs, aux.abiInfo, nil, storeAddr, 0)
    				mem = x.rewriteWideSelectToStores(call.Pos, call.Block, v, mem, v.Type, rc)
    				store.copyOf(mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  4. pkg/kube/krt/README.md

    * Allow a lightweight form of a `Full -> Subset` transformation, that doesn't create a full new collection (with respective overhead), but rather overlays on top of an existing one.
    
    #### Internal dependency optimizations
    
    Today, the library stores a mapping of `Input -> Dependencies` (`map[Key[I]][]dependency`).
    Often times, there are common dependencies amongst keys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    // patcher breaks the process of patch application and retries into smaller
    // pieces of functionality.
    // TODO: Use builder pattern to construct this object?
    // TODO: As part of that effort, some aspects of PatchResource above could be
    // moved into this type.
    type patcher struct {
    	// Pieces of RequestScope
    	namer               ScopeNamer
    	creater             runtime.ObjectCreater
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

              return_op.emitOpError()
                  << "non TPU ops do not divide state into two pieces.";
              return LogicalResult::failure();
            }
          } else if (!non_tpu_ops.contains(operand.get().getDefiningOp())) {
            return_op.emitOpError()
                << "non TPU ops do not divide state into two pieces.";
            return LogicalResult::failure();
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	defer cancel()
    
    	klog.V(2).InfoS("Waiting for client certificate to be issued")
    	return csr.WaitForCertificate(ctx, client, reqName, reqUID)
    }
    
    // This digest should include all the relevant pieces of the CSR we care about.
    // We can't directly hash the serialized CSR because of random padding that we
    // regenerate every loop and we include usages which are not contained in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  8. src/go/doc/doc.go

    	// AllMethods says to show all embedded methods, not just the ones of
    	// invisible (unexported) anonymous fields.
    	AllMethods
    
    	// PreserveAST says to leave the AST unmodified. Originally, pieces of
    	// the AST such as function bodies were nil-ed out to save memory in
    	// godoc, but not all programs want that behavior.
    	PreserveAST
    )
    
    // New computes the package documentation for the given package AST.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    	partsProxyDomain := strings.Split(proxyDomain, ".")
    	partsFQDNInReverse := slices.Reverse(partsFQDN)
    	partsProxyDomainInReverse := slices.Reverse(partsProxyDomain)
    	var sharedSuffixesInReverse []string // pieces shared between proxy and svc. e.g., local,cluster,svc
    
    	for i := 0; i < min(len(partsFQDNInReverse), len(partsProxyDomainInReverse)); i++ {
    		if partsFQDNInReverse[i] == partsProxyDomainInReverse[i] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Joiner.java

    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a
     * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns
     * them as a {@link String}. Example:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top