Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for alphabetically (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    You will see <<#sec:declaring_task_option,declared options>> and their <<#sec:documenting_available_task_option_values,available values>> reflected in the console output of the `help` task.
    The output renders options alphabetically, except for boolean disable options, which appear following the enable option:
    
    ----
    $ gradle -q help --task processUrl
    include::{snippetsPath}/tasks/commandLineOption-optionValues/tests/helpTaskOptions.out[]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * (strings in the navigation bar, headings for lists and tables, help file contents,
         * comments in stylesheet.css, and so forth).
         * It also specifies the sorting order for lists sorted alphabetically,
         * and the sentence separator to determine the end of the first sentence.
         * It does not determine the locale of the doc comment text specified in the source files of the documented classes.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            return author(true);
        }
    
        /**
         * -splitindex
         * <p>
         * Splits the index file into multiple files, alphabetically, one file per letter,
         * plus a file for any index entries that start with non-alphabetical characters.
         */
        @Input
        public boolean isSplitIndex() {
            return splitIndex.getValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            doesNotHaveIncubatingLegend()
            doesNotPromptForRerunToFindMoreVariants()
        }
    
        def "If multiple outgoing variants present with attributes, task reports them all, sorted alphabetically"() {
            given:
            buildFile << """
                configurations.create("someConf") {
                    description = "My first custom configuration"
                    canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/analyzers_test.go

    }
    
    // Some notes on setting up tests for Analyzers:
    // * The resources in the input files don't necessarily need to be completely defined, just defined enough for the analyzer being tested.
    // * Please keep this list sorted alphabetically by the pkg.name of the analyzer for convenience
    // * Expected messages are in the format {msg.ValidationMessageType, "<ResourceKind>/<Namespace>/<ResourceName>"}.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // Sort reorders a slice of nodes based on the specified ordering
    // criteria. The result is sorted in decreasing order for (absolute)
    // numeric quantities, alphabetically for text, and increasing for
    // addresses.
    func (ns Nodes) Sort(o NodeOrder) error {
    	var s nodeSorter
    
    	switch o {
    	case FlatNameOrder:
    		s = nodeSorter{ns,
    			func(l, r *Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	_nn  = 874
    	_sfb = 13629
    	_vgt = 15701
    	_sgg = 13660
    	_cmn = 3007
    	_nan = 835
    	_hsn = 467
    )
    
    const langPrivateStart = 0x2f72
    
    const langPrivateEnd = 0x3179
    
    // lang holds an alphabetically sorted list of ISO-639 language identifiers.
    // All entries are 4 bytes. The index of the identifier (divided by 4) is the language tag.
    // For 2-byte language identifiers, the two successive bytes have the following meaning:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/MediaType.java

      private static MediaType addKnownType(MediaType mediaType) {
        KNOWN_TYPES.put(mediaType, mediaType);
        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway.go

    		return input
    	}
    	dedupe := make(map[host.Name]*route.VirtualHost, len(input))
    	known := make(map[uint64]host.Name, len(input))
    
    	// In order to ensure stable XDS, we need to sort things. First vhost alphabetically will be the "primary"
    	var hostnameKeys host.Names = make([]host.Name, 0, len(input))
    	for k := range input {
    		hostnameKeys = append(hostnameKeys, k)
    	}
    	sort.Sort(hostnameKeys)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/MediaType.java

      private static MediaType addKnownType(MediaType mediaType) {
        KNOWN_TYPES.put(mediaType, mediaType);
        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
Back to top