Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Combine (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            return NeedsCastBack(use, tf_dialect_);
          }))
        return false;
    
      // Combine shape information including shape info in subtypes.
      Type operand_type = op->getOperand(0).getType();
      Type result_type = result.getType();
      auto new_type = GetCastCompatibleType(operand_type, result_type);
      if (!new_type) {
        // Combine shape information when leaf element types are not the same, not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	-buildmode=default
    //		Listed main packages are built into executables and listed
    //		non-main packages are built into .a files (the default
    //		behavior).
    //
    //	-buildmode=shared
    //		Combine all the listed non-main packages into a single shared
    //		library that will be used when building with the -linkshared
    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    				st.err.Errorf(s, "missing DWARF section for relocation target %s", ldr.SymName(rs))
    			}
    
    			if target.IsExternal() {
    				// On most platforms, the external linker needs to adjust DWARF references
    				// as it combines DWARF sections. However, on Darwin, dsymutil does the
    				// DWARF linking, and it understands how to follow section offsets.
    				// Leaving in the relocation records confuses it (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	pod := kubecontainer.Pods(pods).FindPod(podFullName, podUID)
    	return pod.FindContainerByName(containerName), nil
    }
    
    // RunInContainer runs a command in a container, returns the combined stdout, stderr as an array of bytes
    func (kl *Kubelet) RunInContainer(ctx context.Context, podFullName string, podUID types.UID, containerName string, cmd []string) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top