Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 487 for representing (0.18 sec)

  1. android/guava/src/com/google/common/base/Ticker.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    | None
    | Generates minimal solution file.
    
    | <<cpp_application_plugin.adoc#cpp_application_plugin,{cpp} Application>>
    | Adds a project representing the {cpp} application to the solution file.
    
    | <<cpp_library_plugin.adoc#cpp_library_plugin,{cpp} Library>>
    | Adds a project for each specified linkage representing the shared and/or static library to the solution file.
    |===
    
    [[sec:visual_studio_usage]]
    == Usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/runtime/mpagecache.go

    // a pageCachePages*pageSize chunk of memory with 0 or more free
    // pages in it.
    type pageCache struct {
    	base  uintptr // base address of the chunk
    	cache uint64  // 64-bit bitmap representing free pages (1 means free)
    	scav  uint64  // 64-bit bitmap representing scavenged pages (1 means scavenged)
    }
    
    // empty reports whether the page cache has no free pages.
    func (c *pageCache) empty() bool {
    	return c.cache == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/MojosExecutionStrategy.java

     * decorate default functionality or skip some executions
     */
    public interface MojosExecutionStrategy {
    
        /**
         * Entry point to the execution strategy
         *
         * @param mojos             list of mojos representing a project build
         * @param session           current session
         * @param mojoExecutionRunner mojo execution task which must be invoked by a strategy to actually run it
         * @throws LifecycleExecutionException
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioSolution.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.plugins.ide.IdeWorkspace;
    
    /**
     * A visual studio solution, representing one or more native binaries in a build.
     * <p>
     *
     * The content and location of the generate solution file can be modified by the supplied methods:
     *
     * <pre class='autoTested'>
     *  plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/runtime/metrics/value.go

    type Value struct {
    	kind    ValueKind
    	scalar  uint64         // contains scalar values for scalar Kinds.
    	pointer unsafe.Pointer // contains non-scalar values.
    }
    
    // Kind returns the tag representing the kind of value this is.
    func (v Value) Kind() ValueKind {
    	return v.kind
    }
    
    // Uint64 returns the internal uint64 value for the metric.
    //
    // If v.Kind() != KindUint64, this method panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTargetMachineFactory.java

        private final ObjectFactory objectFactory;
    
        public DefaultTargetMachineFactory(ObjectFactory objectFactory) {
            this.objectFactory = objectFactory;
        }
    
        /**
         * Returns a {@link TargetMachine} representing the operating system and architecture of the current host.
         */
        public TargetMachine host() {
            DefaultNativePlatform host = DefaultNativePlatform.host();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/AbstractClassLoaderScope.java

        public ClassLoaderScopeId getId() {
            return id;
        }
    
        @Nullable
        @Override
        public ClassLoaderScopeOrigin getOrigin() {
            return origin;
        }
    
        /**
         * A string representing the path of this {@link ClassLoaderScope} in the {@link ClassLoaderScope} graph.
         */
        public String getPath() {
            return id.getPath();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. pkg/util/node/node.go

    type NoMatchError struct {
    	addresses []v1.NodeAddress
    }
    
    // Error is the implementation of the conventional interface for
    // representing an error condition, with the nil value representing no error.
    func (e *NoMatchError) Error() string {
    	return fmt.Sprintf("no preferred addresses found; known addresses: %v", e.addresses)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

        /**
         * Returns a display name for the resource. This can be used in log and error messages.
         *
         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Returns a file representing the location of the resource. Not all resources are available as a file.
         * Note that the file returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top