Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Display (0.11 sec)

  1. JavadocStyleGuide.md

    ```java
    public Image getImage(URL url, String name) {}
    ```
    
    ## 1.5 A note on IDEs
    
    ### 1.5.1 IntelliJ IDEA
    
    IntelliJ IDEA will display `<p>` or an empty `*` as a new line:
    
    ```java
    /**
     * A
     *
     * B
     ```
    
    ```java
    /**
     * A
     * <p>
     * B
     ```
    
    Render as:
    
    ```text
    A
    B
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                            + pluginDescriptor.getId() + "'. A required class is missing: "
                            + cause.getMessage());
                    pluginRealm.display(ps);
    
                    throw new PluginContainerException(mojoDescriptor, pluginRealm, os.toString(), cause);
                } else if (cause instanceof LinkageError) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                }
            }
    
            if ((reference != null && !reference.isEmpty()) && !reference.startsWith("http:")) {
                reference = "http://cwiki.apache.org/confluence/display/MAVEN/" + reference;
            }
    
            return reference;
        }
    
        private boolean isNoteworthyException(Throwable exception) {
            if (exception == null) {
                return false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         * @since 6.2
         */
        public void setExportKeys(boolean exportKeys) {
            this.exportKeys = exportKeys;
        }
    
        /**
         * Returns when to display a welcome message on the command line.
         *
         * @return The welcome message configuration.
         * @see WelcomeMessageDisplayMode
         * @since 7.5
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/productpage.py

            if val is not None:
                headers[ihdr] = val
    
        return headers
    
    
    # The UI:
    @app.route('/')
    @app.route('/index.html')
    def index():
        """ Display productpage with normal user and test user buttons"""
        global productpage
    
        table = json2html.convert(json=json.dumps(productpage),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        private
        fun reportUniqueValueSourceInput(trace: PropertyTrace, displayName: String?, typeName: String) {
            // We assume different types won't ever produce identical display names
            if (reportedValueSources.add(displayName ?: typeName)) {
                reportValueSourceInput(trace, displayName, typeName)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/go-version/LICENSE

         non-exclusive license:
    
         a. under intellectual property rights (other than patent or trademark)
            Licensable by such Contributor to use, reproduce, make available,
            modify, display, perform, distribute, and otherwise exploit its
            Contributions, either on an unmodified basis, with Modifications, or as
            part of a Larger Work; and
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    		if pos := strings.Index(fn, "."); pos >= 0 {
    			fn = fn[pos+1:]
    		}
    		s += fmt.Sprintf("call to %s:", fn)
    	} else {
    		s += "indirect call:"
    	}
    
    	// Sort variable names for display. Variables aren't in any particular order, and
    	// the order can change by architecture, particularly with differences in regabi.
    	var names []string
    	for j, n := range lv.vars {
    		if live.Get(int32(j)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top