Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for maxs (0.17 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (index_and_value.index() % 2 == 0) {
          mins.push_back(value.convertToFloat());
        } else {
          maxs.push_back(value.convertToFloat());
        }
      }
    
      return tflite::CreateQuantizationParameters(
          builder_, builder_.CreateVector<float>(mins),
          builder_.CreateVector<float>(maxs), /*scale=*/0, /*zero_point=*/0,
          tflite::QuantizationDetails_NONE, /*details=*/0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/benchmarks.md

    * **FastAPI**:
        * Da mesma forma que o Starlette utiliza o Uvicorn e não consegue ser mais rápido que ele, o **FastAPI** utiliza o Starlette, portanto, ele não consegue ser mais rápido que ele.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    	//
    	// Invariant: Defs[id] == nil || Defs[id].Pos() == id.Pos()
    	Defs map[*syntax.Name]Object
    
    	// Uses maps identifiers to the objects they denote.
    	//
    	// For an embedded field, Uses returns the *TypeName it denotes.
    	//
    	// Invariant: Uses[id].Pos() != id.Pos()
    	Uses map[*syntax.Name]Object
    
    	// Implicits maps nodes to their implicitly declared objects, if any.
    	// The following node and object types may appear:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    limitations under the License.
    */
    
    package modes
    
    import (
    	"reflect"
    
    	"github.com/fxamacker/cbor/v2"
    )
    
    var Decode cbor.DecMode = func() cbor.DecMode {
    	decode, err := cbor.DecOptions{
    		// Maps with duplicate keys are well-formed but invalid according to the CBOR spec
    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. docs/pt/docs/fastapi-cli.md

    # FastAPI CLI
    
    **FastAPI CLI** é uma interface por linha de comando do `fastapi` que você pode usar para rodar sua app FastAPI, gerenciar seu projeto FastAPI e mais.
    
    Quando você instala o FastAPI (ex.: com `pip install fastapi`), isso inclui um pacote chamado `fastapi-cli`. Esse pacote disponibiliza o comando `fastapi` no terminal.
    
    Para rodar seu app FastAPI em desenvolvimento, você pode usar o comando `fastapi dev`:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.ArrayListMultimap;
    import com.google.common.collect.LinkedHashMultiset;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Multiset;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Iterator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.ArrayListMultimap;
    import com.google.common.collect.LinkedHashMultiset;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Multiset;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Iterator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package builder
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/tools/istio-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    	"istio.io/istio/tools/istio-iptables/pkg/log"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

        val graph: ByteArray,
    
        /**
         * External references that are not serialized directly as part of the [graph].
         * These might include references to classes, value sources and build services.
         *
         * Maps the integer written to the serialized [graph] to the external reference.
         * See [EnvironmentEncoder] and [EnvironmentDecoder] for details.
         */
        val environment: Map<Int, Any>,
    )
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top