Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for representing (0.4 sec)

  1. src/cmd/compile/internal/reflectdata/helpers.go

    // expression that yields the *runtime._type value representing typ.
    func kindRType(pos src.XPos, typ *types.Type, k types.Kind) ir.Node {
    	base.AssertfAt(typ.Kind() == k, pos, "want %v type, have %v", k, typ)
    	return TypePtrAt(pos, typ)
    }
    
    // mapRType asserts that typ is a map type, and returns an expression
    // that yields the *runtime._type value representing typ.
    func mapRType(pos src.XPos, typ *types.Type) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    | Adds a target representing the {cpp} application to the project file.
    
    | <<cpp_library_plugin.adoc#cpp_library_plugin,{cpp} Library>>
    | Adds a target for each specified linkage representing the shared and/or static library to the project file.
    
    | <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    | Adds a target representing the Swift application to the project file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ListeningExecutorService.java

      /**
       * @return a {@code ListenableFuture} representing pending completion of the task
       * @throws RejectedExecutionException {@inheritDoc}
       */
      @Override
      <T extends @Nullable Object> ListenableFuture<T> submit(Callable<T> task);
    
      /**
       * @return a {@code ListenableFuture} representing pending completion of the task
       * @throws RejectedExecutionException {@inheritDoc}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 20:33:25 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/type.go

    // computed dynamically.
    type DynamicType struct {
    	miniExpr
    
    	// RType is an expression that yields a *runtime._type value
    	// representing the asserted type.
    	//
    	// BUG(mdempsky): If ITab is non-nil, RType may be nil.
    	RType Node
    
    	// ITab is an expression that yields a *runtime.itab value
    	// representing the asserted type within the assertee expression's
    	// original interface type.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolverResults.java

            /**
             * Create a new legacy result representing the result of resolving build dependencies.
             */
            public static LegacyResolverResults buildDependenciesResolved(LegacyVisitedArtifactSet artifacts) {
                return new DefaultLegacyResolverResults(artifacts, null);
            }
    
            /**
             * Create a new legacy result representing the result of resolving the dependency graph.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/os/user/user.go

    type User struct {
    	// Uid is the user ID.
    	// On POSIX systems, this is a decimal number representing the uid.
    	// On Windows, this is a security identifier (SID) in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Uid string
    	// Gid is the primary group ID.
    	// On POSIX systems, this is a decimal number representing the gid.
    	// On Windows, this is a SID in a string format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top