Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for Allows (0.15 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    bool VerifyMulOpShapeConstraints(MulOp op) {
      auto element_type = getElementTypeOrSelf(op.getOutput().getType());
    
      // Allows QI8 and QUI8 inputs up to five dimension broadcasting unless the
      // output type is not QI16. If the output type is Q16, allows only the same
      // shape operands.
      if (IsQI8Type(element_type) || IsQUI8Type(element_type)) {
        if (IsQI16Type(getElementTypeOrSelf(op.getLhs().getType()))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        ClosingFuture<U> apply(DeferredCloser closer, @ParametricNullness T input) throws Exception;
      }
    
      /**
       * An object that holds the final result of an asynchronous {@link ClosingFuture} operation and
       * allows the user to close all the closeable objects that were captured during it for later
       * closing.
       *
       * <p>The asynchronous operation will have completed before this object is created.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        ClosingFuture<U> apply(DeferredCloser closer, @ParametricNullness T input) throws Exception;
      }
    
      /**
       * An object that holds the final result of an asynchronous {@link ClosingFuture} operation and
       * allows the user to close all the closeable objects that were captured during it for later
       * closing.
       *
       * <p>The asynchronous operation will have completed before this object is created.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateTFFunctionalControlFlowToRegions()";
    
      let options = [
        Option<"allow_passthrough_args_", "allow-passthrough-args", "bool",
               /*default=*/"false",
               "Allows to switch on passthrough args for control flow logic. This "
               "allows the pass to create blocks that better match MLIR interfaces, "
               "but might break assumptions in existing passes.">
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

                FOR INTERNAL USE ONLY. This is a unique identifier assigned to each
                resource to allow Maven to merge changes to this resource that take
                place during the execution of a plugin. This field must be managed
                by the generated parser and formatter classes in order to allow it
                to survive model interpolation.
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    KUBE_APISERVER_GODEBUG: $(yaml-quote "${KUBE_APISERVER_GODEBUG}")
    EOF
        fi
        # ETCD_IMAGE (if set) allows to use a custom etcd image.
        if [ -n "${ETCD_IMAGE:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_IMAGE: $(yaml-quote "${ETCD_IMAGE}")
    EOF
        fi
        # ETCD_DOCKER_REPOSITORY (if set) allows to use a custom etcd docker repository to pull the etcd image from.
        if [ -n "${ETCD_DOCKER_REPOSITORY:-}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector_test.go

    	//
    	// Setting the period to 200ms allows the WaitForCacheSync() to check
    	// for cache sync ~2 times in every wait.PollImmediateUntil() loop.
    	//
    	// The 1s sleep in the test allows GetDeletableResources and
    	// gc.resyncMonitors to run ~5 times to ensure the changes to the
    	// fakeDiscoveryClient are picked up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // larger than 2^25 bytes due to the size of call target offset field
    // in the 'bl' instruction. Splitting into smaller text sections
    // smaller than this limit allows the system linker to modify the long
    // calls appropriately. The limit allows for the space needed for
    // tables inserted by the linker.
    //
    // The same applies to Darwin/ARM64, with 2^27 byte threshold.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                  }
                ],
                "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
              },
              "object": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top