Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 583 for representing (0.2 sec)

  1. src/cmd/compile/internal/ir/const.go

    	"cmd/compile/internal/base"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    )
    
    // NewBool returns an OLITERAL representing b as an untyped boolean.
    func NewBool(pos src.XPos, b bool) Node {
    	return NewBasicLit(pos, types.UntypedBool, constant.MakeBool(b))
    }
    
    // NewInt returns an OLITERAL representing v as an untyped integer.
    func NewInt(pos src.XPos, v int64) Node {
    	return NewBasicLit(pos, types.UntypedInt, constant.MakeInt64(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 18:53:26 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

            try {
                return Try.successful(failable.call());
            } catch (Exception e) {
                return Try.failure(e);
            }
        }
    
        /**
         * Construct a {@code Try} representing a successful execution.
         * The returned object will hold the given result.
         * If the result is null, then the returned Try instance will hold null as its value.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/strconv/quote.go

    }
    
    // Quote returns a double-quoted Go string literal representing s. The
    // returned string uses Go escape sequences (\t, \n, \xFF, \u0100) for
    // control characters and non-printable characters as defined by
    // [IsPrint].
    func Quote(s string) string {
    	return quoteWith(s, '"', false, false)
    }
    
    // AppendQuote appends a double-quoted Go string literal representing s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ivy/IvyModuleDescriptor.java

        /**
         * Returns an {@link org.gradle.api.artifacts.ivy.IvyExtraInfo} representing the "extra" info declared
         * in this descriptor.
         * <p>
         * The extra info is the set of all non-standard subelements of the info element.
         *
         * @return an {@link org.gradle.api.artifacts.ivy.IvyExtraInfo} representing the extra info declared in this descriptor
         */
        IvyExtraInfo getExtraInfo();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ArtifactResolutionResult.java

    /**
     * The result of executing an artifact resolution query.
     *
     * @since 2.0
     */
    public interface ArtifactResolutionResult {
        /**
         * <p>Return a set of {@link ComponentResult} instances representing all requested components.
         *
         * <p>Each element in the returned set is declared as an opaque {@link ComponentResult}.
         *    However each element in the result will also implement one of the following interfaces:</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top