Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for Views (0.2 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    Omit the format to get an interactive shell whose commands can be used
    to generate various views of a profile
    
       pprof [options] [binary] <source> ...
    
    Omit the format and provide the "-http" flag to get an interactive web
    interface at the specified host:port that can be used to navigate through
    various views of a profile.
    
       pprof -http [host]:[port] [options] [binary] <source> ...
    
    Details:
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

         */
        void setTarget(ModelNode target);
    
        /**
         * Ensure that the views are available, with default values applied.
         */
        void ensureUsable();
    
        void ensureAtLeast(ModelNode.State state);
    
        boolean isAtLeast(ModelNode.State state);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

                        }
                    }
                }
                apply plugin: ValidateTaskRules
            """
            expect:
            succeeds "validate"
        }
    
        def "can declare internal views for both custom unmanaged and managed component"() {
            buildFile << """
                interface UnmanagedComponentSpec extends ComponentSpec {
                }
    
                interface UnmanagedComponentSpecInternal {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

          TestSortedMapGenerator<K, V> delegate, Bound to, Bound from) {
        return subSuiteUsing(new NavigableMapSubmapTestMapGenerator<K, V>(delegate, to, from));
      }
    
      /** Create a suite whose maps are descending views of other maps. */
      private TestSuite createDescendingSuite(
          FeatureSpecificTestSuiteBuilder<
                  ?, ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>>
              parentBuilder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

          TestSortedMapGenerator<K, V> delegate, Bound to, Bound from) {
        return subSuiteUsing(new NavigableMapSubmapTestMapGenerator<K, V>(delegate, to, from));
      }
    
      /** Create a suite whose maps are descending views of other maps. */
      private TestSuite createDescendingSuite(
          FeatureSpecificTestSuiteBuilder<
                  ?, ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>>
              parentBuilder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/http.go

    package traceviewer
    
    import (
    	"embed"
    	"fmt"
    	"html/template"
    	"net/http"
    	"strings"
    )
    
    func MainHandler(views []View) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
    		if err := templMain.Execute(w, views); err != nil {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    			return
    		}
    	})
    }
    
    const CommonStyle = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ArrayListMultimap.java

     * existing key-value pair, the {@code ArrayListMultimap} will contain entries for both the new
     * value and the old value.
     *
     * <p>Keys and values may be null. All optional multimap methods are supported, and all returned
     * views are modifiable.
     *
     * <p>The lists returned by {@link #get}, {@link #removeAll}, and {@link #replaceValues} all
     * implement {@link java.util.RandomAccess}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/LinkedListMultimap.java

     * #entries()}, and {@link #asMap} return collections that are views of the multimap. If the
     * multimap is modified while an iteration over any of those collections is in progress, except
     * through the iterator's methods, the results of the iteration are undefined.
     *
     * <p>Keys and values may be null. All optional multimap methods are supported, and all returned
     * views are modifiable.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/StandardTable.java

     * secondary maps. This class provides rapid access to records by the row key alone or by both keys,
     * but not by just the column key.
     *
     * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link #columnMap()} have
     * iterators that don't support {@code remove()}. Otherwise, all optional operations are supported.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

    """
    
            when:
            run "model"
    
            then:
            def modelNode = ModelReportOutput.from(output).modelNode
            !modelNode.thingamajigger
        }
    
        def "properties on internal views of custom component are hidden in the model report"() {
            given:
            buildFile << """
                interface UnmanagedComponentSpec extends ComponentSpec {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top