Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 367 for utilio (0.88 sec)

  1. .idea/inspectionProfiles/Gradle.xml

          </replaceConfiguration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

        Given a const min, max, num_bits and narrow_range attribute, applies the
        same uniform quantization simulation as is done by the TensorFlow
        fake_quant_with_min_max_args op. See the fakeQuantAttrsToType() utility
        method and the quant-convert-simulated-quantization pass for further details.
      }];
    
      let arguments = (ins
        F32Tensor:$inputs,
        F32Attr:$min,
        F32Attr:$max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

        Given a const min, max, num_bits and narrow_range attribute, applies the
        same uniform quantization simulation as is done by the TensorFlow
        fake_quant_with_min_max_args op. See the fakeQuantAttrsToType() utility
        method and the quant-convert-simulated-quantization pass for further details.
      }];
    
      let arguments = (ins
        F32Tensor:$inputs,
        F32Attr:$min,
        F32Attr:$max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/validation/validation.go

    	"k8s.io/kubernetes/pkg/features"
    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    	utiltaints "k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/utils/cpuset"
    )
    
    var (
    	defaultCFSQuota = metav1.Duration{Duration: 100 * time.Millisecond}
    )
    
    // ValidateKubeletConfiguration validates `kc` and returns an error if it is invalid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/kubelet/userns/userns_manager.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	utilstore "k8s.io/kubernetes/pkg/kubelet/util/store"
    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/oauth2-jwt.md

        And be compatible with all of them at the same time.
    
    Create a utility function to hash a password coming from the user.
    
    And another utility to verify if a received password matches the hash stored.
    
    And another one to authenticate and return a user.
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ComparisonChain.java

     * Comparator} instead of {@code ComparisonChain}. The example above can be implemented like this:
     *
     * <pre>{@code
     * import static java.util.Comparator.comparing;
     * import static java.util.Comparator.nullsLast;
     * import static java.util.Comparator.naturalOrder;
     *
     * ...
     *   private static final Comparator<Foo> COMPARATOR =
     *       comparing((Foo foo) -> foo.aString)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  8. pkg/controller/util/node/controller_utils.go

    	"k8s.io/apimachinery/pkg/types"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    
    	v1 "k8s.io/api/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	appsv1listers "k8s.io/client-go/listers/apps/v1"
    	utilpod "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/query-params-str-validations.md

    Le nom le plus proche serait `item_query`.
    
    Mais vous avez vraiment envie que ce soit exactement `item-query`...
    
    Pour cela vous pouvez déclarer un `alias`, et cet alias est ce qui sera utilisé pour trouver la valeur du paramètre :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial009.py!}
    ```
    
    ## Déprécier des paramètres
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/value.h

            return visitor(data_.capsule);
          case NONE:
            return visitor(impl::None::GetInstance());
        }
      }
    
     private:
      /// @brief A utility class for mapping C++ types to Type values.
      template <typename T>
      struct EnumValueOf;
    
      /// @brief A utility class for accessing the `Data` union members.
      template <typename T>
      struct UnionAccess;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top