Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for inversion (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/api/validation/path"
    	metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Inline the regions from the old while into the new one, and apply
        // signature conversion to inlined region.
        for (auto it : llvm::zip(op.getRegions(), converted.getRegions())) {
          Region &old_region = *std::get<0>(it);
          Region &new_region = *std::get<1>(it);
    
          Block &entry = old_region.front();
          // Build signature conversion for the region.
          TypeConverter::SignatureConversion signature_conversion(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    *This is a feature of specific tasks*!
    That means implicit conversion will not happen for just any task that has a `FileCollection` or `FileTree` property.
    If you want to know whether implicit conversion happens in a particular situation, you will need to read the relevant documentation, such as the corresponding task's API docs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/time/time.go

    		return errors.New("Time.UnmarshalBinary: unsupported version")
    	}
    
    	wantLen := /*version*/ 1 + /*sec*/ 8 + /*nsec*/ 4 + /*zone offset*/ 2
    	if version == timeBinaryVersionV2 {
    		wantLen++
    	}
    	if len(buf) != wantLen {
    		return errors.New("Time.UnmarshalBinary: invalid length")
    	}
    
    	buf = buf[1:]
    	sec := int64(buf[7]) | int64(buf[6])<<8 | int64(buf[5])<<16 | int64(buf[4])<<24 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    	reflect "reflect"
    	sync "sync"
    )
    
    const (
    	// Verify that this generated code is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    	// Verify that runtime/protoimpl is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    )
    
    type WorkloadStatus int32
    
    const (
    	// Workload is healthy and ready to serve traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        PatternRewriter& rewriter, Value& scale, Value& zero_point) {
      // Consuming op should already know about Quantized channel information,
      // so not passing it during conversion. This design might change if needed.
      ArrayRef<double> scales = qtype.getScales();
      ArrayRef<int64_t> zero_points = qtype.getZeroPoints();
      const int num_channels = scales.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      # bump up things
      refresh_docker_containerd_runc
    
      # check if the new stuff is there
      docker version
      containerd --version
      runc --version
    
      echo "starting docker"
      service docker start
    fi
    
    # validate that etcd is: not running, in path, and has minimum required version.
    if [[ "${START_MODE}" != "kubeletonly" ]]; then
      kube::etcd::validate
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        if (failed(input_zero_point_broadcast_in_dim_op)) return failure();
    
        Value input_zero_point_constant_value =
            input_zero_point_broadcast_in_dim_op->getOperand();
        // Match optional i8->i32 conversion for z.
        if (auto input_zero_point_i8_to_i32_convert_op =
                TryCast<stablehlo::ConvertOp>(
                    input_zero_point_constant_value.getDefiningOp(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    // not be generated.
    func Run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Dependencies, featureGate featuregate.FeatureGate) error {
    	// To help debugging, immediately log version
    	klog.InfoS("Kubelet version", "kubeletVersion", version.Get())
    
    	klog.InfoS("Golang settings", "GOGC", os.Getenv("GOGC"), "GOMAXPROCS", os.Getenv("GOMAXPROCS"), "GOTRACEBACK", os.Getenv("GOTRACEBACK"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. .bazelrc

    /tests/tf_to_tfrt_data,tensorflow/compiler/mlir/tfrt/tests/saved_model,tensorflow/compiler/mlir/tfrt/transforms/lhlo_gpu_to_tfrt_gpu,tensorflow/compiler/mlir/tfrt/transforms/mlrt,tensorflow/core/runtime_fallback,tensorflow/core/runtime_fallback/conversion,tensorflow/core/runtime_fallback/kernel,tensorflow/core/runtime_fallback/opdefs,tensorflow/core/runtime_fallback/runtime,tensorflow/core/runtime_fallback/util,tensorflow/core/runtime_fallback/test,tensorflow/core/runtime_fallback/test/gpu,tenso...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top