Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 417 for loadOne (0.16 sec)

  1. maven-embedder/src/site/apt/logging.apt

     but is ready to use other logging implementations: SLF4J is responsible for loading the implementation, referred to as
     {{{http://www.slf4j.org/manual.html#swapping}"SLF4J bindings"}}.
    
     Logging configuration loading is actually done by logging implementation, without any Maven extensions to support merging
     Maven installation configuration with per-user configuration for example:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/image_format/README.md

    ```
    
    When this option is enabled, exported SavedModels with proto size > 2GB will
    automatically save with the new format (`.cpb` instead of `.pb`).
    
    <!-- **Compatibility** -->
    
    The official TF APIs (TF1/TF2 python or C++ loading) have already been
    integrated to handle the new format, but some downstream converters may not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    	if iamOS.objAPI == nil {
    		return errServerNotInitialized
    	}
    
    	bootstrapTraceMsg("loading all IAM items")
    
    	listedConfigItems, err := iamOS.listAllIAMConfigItems(ctx)
    	if err != nil {
    		return fmt.Errorf("unable to list IAM data: %w", err)
    	}
    
    	// Loads things in the same order as `LoadIAMCache()`
    
    	bootstrapTraceMsg("loading policy documents")
    
    	policiesList := listedConfigItems[policiesListKey]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/resources/DefaultTextResourceFactory.java

            return apiTextResourcesAdapterFactory.create(rootUri, redirectVerifier);
        }
    
        private static void throwExceptionDueToInsecureProtocol(URI rootUri) {
            throw new InsecureProtocolException(
                "Loading a TextResource from an insecure URI, without explicit opt-in, is unsupported. " + String.format("The provided URI '%s' uses an insecure protocol (HTTP). ", rootUri),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. samples/helloworld/README.md

    kubectl autoscale deployment helloworld-v1 --cpu-percent=50 --min=1 --max=10
    kubectl autoscale deployment helloworld-v2 --cpu-percent=50 --min=1 --max=10
    kubectl get hpa
    ```
    
    ## Generate load
    
    ```bash
    ./loadgen.sh &
    ./loadgen.sh & # run it twice to generate lots of load
    ```
    
    Wait for about 2 minutes and then check the number of replicas:
    
    ```bash
    kubectl get hpa
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/CacheLoader.java

       * reloading or bulk loading. This is most useful when you can pass a lambda expression. Otherwise
       * it is useful mostly when you already have an existing function instance.
       *
       * <p>The returned object is serializable if {@code function} is serializable.
       *
       * @param function the function to be used for loading values; must never return {@code null}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_goline_order.txt

    # Check that go line in go.work is always >= go line of used modules.
    
    # Using an old Go version, fails during module loading, but we rewrite the error to the
    # same one a switching version would use, without the auto-switch.
    # This is a misconfigured system that should not arise in practice.
    env TESTGO_VERSION=go1.21.1
    env TESTGO_VERSION_SWITCH=switch
    cp go.work go.work.orig
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe_arm64.s

    //go:build !purego
    
    #include "textflag.h"
    
    // carryPropagate works exactly like carryPropagateGeneric and uses the
    // same AND, ADD, and LSR+MADD instructions emitted by the compiler, but
    // avoids loading R0-R4 twice and uses LDP and STP.
    //
    // See https://golang.org/issues/43145 for the main compiler issue.
    //
    // func carryPropagate(v *Element)
    TEXT ·carryPropagate(SB),NOFRAME|NOSPLIT,$0-8
    	MOVD v+0(FP), R20
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

     */
    public enum JavadocOutputLevel {
        /**
         * -verbose
         *
         * Provides more detailed messages while javadoc is running. Without the verbose option,
         * messages appear for loading the source files, generating the documentation (one message per source file), and sorting.
         * The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top