Search Options

Results per page
Sort
Preferred Languages
Advance

Results 491 - 500 of 618 for Encoder (0.07 sec)

  1. android/guava/src/com/google/common/hash/HashFunction.java

    1. *
    2. * @since 15.0 (since 11.0 as hashString(CharSequence)).
    3. */
    4. HashCode hashUnencodedChars(CharSequence input);
    5.  
    6. /**
    7. * Shortcut for {@code newHasher().putString(input, charset).hash()}. Characters are encoded using
    8. * the given {@link Charset}. The implementation <i>might</i> perform better than its longhand
    9. * equivalent, but should not perform worse.
    10. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/HashCode.java

    1. }
    2. return areEqual;
    3. }
    4.  
    5. private static final long serialVersionUID = 0;
    6. }
    7.  
    8. /**
    9. * Creates a {@code HashCode} from a hexadecimal ({@code base 16}) encoded string. The string must
    10. * be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters.
    11. *
    12. * <p>This method accepts the exact format generated by {@link #toString}. If you require more
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/HashFunction.java

    1. *
    2. * @since 15.0 (since 11.0 as hashString(CharSequence)).
    3. */
    4. HashCode hashUnencodedChars(CharSequence input);
    5.  
    6. /**
    7. * Shortcut for {@code newHasher().putString(input, charset).hash()}. Characters are encoded using
    8. * the given {@link Charset}. The implementation <i>might</i> perform better than its longhand
    9. * equivalent, but should not perform worse.
    10. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  4. istioctl/pkg/multixds/gather.go

    1. for _, response := range responses {
    2. retval[CpInfo(response).ID] = response
    3. }
    4.  
    5. return retval, nil
    6. }
    7.  
    8. // CpInfo returns the Istio control plane info from JSON-encoded XDS ControlPlane Identifier
    9. func CpInfo(xdsResponse *discovery.DiscoveryResponse) pilotxds.IstioControlPlaneInstance {
    10. if xdsResponse.ControlPlane == nil {
    11. return pilotxds.IstioControlPlaneInstance{
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. api/go1.5.txt

    1. pkg encoding/base64, method (Encoding) WithPadding(int32) *Encoding
    2. pkg encoding/base64, var RawStdEncoding *Encoding
    3. pkg encoding/base64, var RawURLEncoding *Encoding
    4. pkg encoding/json, method (*Decoder) More() bool
    5. pkg encoding/json, method (*Decoder) Token() (Token, error)
    6. pkg encoding/json, method (Delim) String() string
    7. pkg encoding/json, type Delim int32
    8. pkg encoding/json, type Token interface {}
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

    1. StatusPtr first_bad_status(nullptr);
    2.  
    3. for (const auto& dt : device_threads_) {
    4. StatusPtr async_wait_status(TF_NewStatus());
    5. dt->AsyncWait(async_wait_status.get());
    6. // Prefer non cancelled errors to uncover real failures.
    7. if (TF_GetCode(async_wait_status.get()) != TF_OK &&
    8. (first_bad_status == nullptr ||
    9. TF_GetCode(first_bad_status.get()) == TF_CANCELLED)) {
    10. first_bad_status.reset(TF_NewStatus());
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 21 04:14:14 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/kubeinject.go

    1. version.Info.Version))
    2. }
    3. return cfg, err
    4. }
    5.  
    6. // grabs the raw values from the ConfigMap. These are encoded as JSON.
    7. func GetValuesFromConfigMap(ctx cli.Context, revision string) (string, error) {
    8. client, err := ctx.CLIClient()
    9. if err != nil {
    10. return "", err
    11. }
    12.  
    13. if revision != "" {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 15 16:31:46 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. docs/ru/docs/features.md

    1. С **FastAPI** вы получаете все возможности **Starlette** (так как FastAPI это всего лишь Starlette на стероидах):
    2.  
    3. * Серьёзно впечатляющая производительность. Это <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">один из самых быстрых фреймворков на Python</a>, наравне с приложениями использующими **NodeJS** или **Go**.
    4. * Поддержка **WebSocket**.
    5. * Фоновые задачи для процессов.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

    1. .assertLogEqual("Content-Encoding: br")
    2. .assertLogEqual("Content-Type: text/plain; charset=utf-8")
    3. .assertLogMatch(Regex("""Content-Length: \d+"""))
    4. .assertLogEqual("<-- END HTTP (encoded body omitted)")
    5. .assertNoMoreLogs()
    6. applicationLogs
    7. .assertLogEqual("--> GET $url")
    8. .assertLogEqual("--> END GET")
    9. .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms\)"""))
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

    1. final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    2. entity.setPermissions(split(form.permissions, "\n").get(
    3. stream -> stream.map(permissionHelper::encode).filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n])));
    4. return entity;
    5. });
    6. }
    7.  
    8. protected void registerLabels(final RenderData data) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top