Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 638 for Display (0.34 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/syscall.go

    //go:build plan9
    
    // Package plan9 contains an interface to the low-level operating system
    // primitives. OS details vary depending on the underlying system, and
    // by default, godoc will display the OS-specific documentation for the current
    // system. If you want godoc to display documentation for another
    // system, set $GOOS and $GOARCH to the desired system. For example, if
    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. pkg/monitoring/monitortest/test.go

    			for _, kv := range row.Label {
    				k, v := *kv.Name, *kv.Value
    				kvs = append(kvs, k+"="+v)
    			}
    			tags := strings.Join(kvs, ",")
    			m.t.Logf(" %v{%v} %v", *metric.Name, tags, display(row))
    		}
    	}
    }
    
    func display(row *dto.Metric) string {
    	if row.Counter != nil {
    		return fmt.Sprint(*row.Counter.Value)
    	} else if row.Gauge != nil {
    		return fmt.Sprint(*row.Gauge.Value)
    	} else if row.Histogram != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

         * Some element have their name generated or automatically assigned, and for these elements the name may not be human consumable.
         */
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this element.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte BS = 8;
    
      /**
       * Horizontal Tabulation ('\t'): A format effector which controls the movement of the printing
       * position to the next in a series of predetermined positions along the printing line.
       * (Applicable also to display devices and the skip function on punched cards.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall.go

    //go:build windows
    
    // Package windows contains an interface to the low-level operating system
    // primitives. OS details vary depending on the underlying system, and
    // by default, godoc will display the OS-specific documentation for the current
    // system. If you want godoc to display syscall documentation for another
    // system, set $GOOS and $GOARCH to the desired system. For example, if
    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Binary.java

    import org.gradle.api.Incubating;
    
    /**
     * A physical binary artifact, which can run on a particular platform or runtime.
     */
    @Incubating
    public interface Binary {
        /**
         * Returns a human-consumable display name for this binary.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 926 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/OwnerAware.java

     */
    public interface OwnerAware {
        /**
         * Notifies this object that it now has an owner associated with it.
         *
         * @param owner The owner object, if any.
         * @param displayName The display name for this object.
         */
        void attachOwner(@Nullable ModelObject owner, DisplayName displayName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/ProblemLocationAnalyzer.java

    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface ProblemLocationAnalyzer {
        /**
         * Calculates the location for a problem with the given stack.
         * @return A display name for the location or null for an unknown location.
         */
        @Nullable
        Location locationForUsage(Failure failure, boolean fromException);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. docs/assets/css/app.css

        line-height: normal;
        font-weight: bold;
    }
    
    button.dl {
      font-weight: 300;
      font-size: 25px;
      line-height: 40px;
      padding: 3px 10px;
      display: inline-block;
      border-radius: 6px;
      color: #f0f0f0;
      margin: 5px 0;
      width: auto;
    }
    
    .logo {
      text-align: center;
      margin-top: 150px;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 08 07:57:03 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                PrintStream ps = new PrintStream(os);
                ps.println(
                        "A required class was missing while executing " + mojoDescriptor.getId() + ": " + e.getMessage());
                pluginRealm.display(ps);
                Exception wrapper = new PluginContainerException(mojoDescriptor, pluginRealm, os.toString(), e);
                throw new PluginExecutionException(mojoExecution, project, wrapper);
            } catch (LinkageError e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top