Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 487 for representing (0.36 sec)

  1. doc/next/6-stdlib/99-minor/reflect/61308.md

    The [SliceAt(typ Type, p unsafe.Pointer, len int)] function
    returns a Value representing a slice whose underlying array starts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 170 bytes
    - Viewed (0)
  2. src/go/types/mono.go

    // types. Edges are used to represent how types depend on each other:
    //
    // * Everywhere a type-parameterized function or type is instantiated,
    //   we add edges to each type parameter from the vertices (if any)
    //   representing each type parameter or defined type referenced by
    //   the type argument. If the type argument is just the referenced
    //   type itself, then the edge has weight 0, otherwise 1.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/kubelet/util/format/pod.go

    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Pod returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    func Pod(pod *v1.Pod) string {
    	if pod == nil {
    		return "<nil>"
    	}
    	return PodDesc(pod.Name, pod.Namespace, pod.UID)
    }
    
    // PodDesc returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir.h

    //   exported_names_str: Comma-separated list of names to export.
    //                       Empty means "export all".
    //
    // Returns:
    //   A string of textual MLIR representing the raw imported SavedModel.
    std::string ExperimentalConvertSavedModelToMlir(
        const std::string &saved_model_path, const std::string &exported_names_str,
        bool show_debug_info, TF_Status *status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer.go

    	// PC tables are arrays of ptr-sized integers representing pairs [PC,PCFlags] for every instrumented block.
    	// The number of PCs and PCFlags is the same as the number of 8-bit counters. Each PC table entry has
    	// the size of two ptr-sized integers. We allocate one more byte than what we actually need so that we can
    	// get a pointer representing the end of the PC table array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 23 01:12:02 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/mono.go

    // types. Edges are used to represent how types depend on each other:
    //
    // * Everywhere a type-parameterized function or type is instantiated,
    //   we add edges to each type parameter from the vertices (if any)
    //   representing each type parameter or defined type referenced by
    //   the type argument. If the type argument is just the referenced
    //   type itself, then the edge has weight 0, otherwise 1.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemEvent.java

     */
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.NonNullApi;
    import org.gradle.tooling.events.ProgressEvent;
    
    /**
     *
     * An event representing a problem.
     *
     * @since 8.4
     */
    @NonNullApi
    @Incubating
    public interface ProblemEvent extends ProgressEvent {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 13:30:36 UTC 2024
    - 923 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/min_max_value.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_CALIBRATION_MIN_MAX_VALUE_H_
    
    #include <utility>
    
    namespace stablehlo::quantization {
    
    // Represents the (min, max) value pair, representing the range of values after
    // calibrating for quantization.
    using MinMaxValue = std::pair<float, float>;
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 16:32:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/runtime/traceevent.go

    // It then returns a traceArg representing that stack which may be
    // passed to write.
    func (tl traceLocker) stack(skip int) traceArg {
    	return traceArg(traceStack(skip, nil, tl.gen))
    }
    
    // startPC takes a start PC for a goroutine and produces a unique
    // stack ID for it.
    //
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/reflect/arena.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build goexperiment.arenas
    
    package reflect
    
    import "arena"
    
    // ArenaNew returns a [Value] representing a pointer to a new zero value for the
    // specified type, allocating storage for it in the provided arena. That is,
    // the returned Value's Type is [PointerTo](typ).
    func ArenaNew(a *arena.Arena, typ Type) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 574 bytes
    - Viewed (0)
Back to top