Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for convertOp (0.17 sec)

  1. src/os/signal/doc.go

    program to simply exit by pressing ^C, and you can cause it to exit
    with a stack dump by pressing ^\.
    
    # Default behavior of signals in Go programs
    
    By default, a synchronous signal is converted into a run-time panic. A
    SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
    SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
    causes the program to exit with a stack dump. A SIGTSTP, SIGTTIN, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. configure.py

    
    def convert_version_to_int(version):
      """Convert a version number to a integer that can be used to compare.
    
      Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The
      'xxxxx' part, for instance 'homebrew' on OS/X, is ignored.
    
      Args:
        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      if (!status.ok()) {
        inst->emitError(
            Twine("failed to convert value attribute to tensor with error: " +
                  status.ToString()));
        return std::nullopt;
      }
    
      // TensorFlow and TensorFlow Lite use different string encoding formats.
      // Convert to TensorFlow Lite format is it's a constant string tensor.
      if (tensor.dtype() == tensorflow::DT_STRING) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. pkg/kubelet/container/runtime.go

    	// List of containers that belongs to this pod. It may contain only
    	// running containers, or mixed with dead ones (when GetPods(true)).
    	Containers []*Container
    	// List of sandboxes associated with this pod. The sandboxes are converted
    	// to Container temporarily to avoid substantial changes to other
    	// components. This is only populated by kuberuntime.
    	// TODO: use the runtimeApi.PodSandbox type directly.
    	Sandboxes []*Container
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	f := fuzz.New().NilChance(0.0).NumElements(1, 1)
    
    	// The goal here is to trigger when any changes are made to either
    	// CreateOptions or UpdateOptions types, so we can update the converter.
    	for i := 0; i < 20; i++ {
    		in := &metav1.UpdateOptions{}
    		f.Fuzz(in)
    		in.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("CreateOptions"))
    
    		out := newCreateOptionsFromUpdateOptions(in)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    passed to the op Both int32 and int64 are allowed and will be converted to
    int32 internally.}]>:$sample_indices_or_row_splits,
        Arg<Variadic<TF_I32OrI64Tensor>, [{A list of rank 1 Tensors, indices into the embedding
    tables. Both int32 and int64 are allowed and will be converted to
    int32 internally.}]>:$embedding_indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Fixed issue where `kubectl-convert` would fail when encountering resources that could not be converted to the specified api version. New behavior is to warn the user of the failed conversions and continue to convert the remaining resources. ([#117002](https://github.com/kubernetes/kubernetes/pull/117002), [@gxwilkerson33](https://github.com/gxwilkerson33))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // bits in a type, PPC64 shifts do not (see the ISA for details).
    //
    // Note, y is always non-negative.
    //
    // Note, ISELZ is intentionally not used in lower. Where possible, ISEL is converted to ISELZ in late lower
    // after all the ISEL folding rules have been exercised.
    
    ((Rsh64U|Lsh64)x64 <t> x y)  => (ISEL [0] (S(R|L)D <t> x y) (MOVDconst [0])        (CMPUconst y [64]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		return []string{"*"}
    	}
    
    	// gateway-api has selectors, but Istio Gateway just has a list of names. We will run the selector
    	// against all namespaces and get a list of matching namespaces that can be converted into a list
    	// Istio can handle.
    	ls, err := metav1.LabelSelectorAsSelector(lr.Namespaces.Selector)
    	if err != nil {
    		return nil
    	}
    	namespaces := []string{}
    	for _, ns := range r.Namespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.cli.converter.BuildLayoutConverter$Result> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BuildLayoutConverter.java:0)
    Class <org.gradle.launcher.cli.converter.BuildLayoutConverter> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BuildLayoutConverter.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top