Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for alphabetically (0.22 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. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    * no timestamp comment is added to the output
    * the line separator is system independent, but can be configured explicitly (it defaults to `'\n'`)
    * the properties are sorted alphabetically
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/EnumBiMapTest.java

        EnumBiMap<Currency, Country> bimap = EnumBiMap.create(Currency.class, Country.class);
        assertEquals(Country.class, bimap.valueType());
      }
    
      public void testIterationOrder() {
        // The enum orderings are alphabetical, leading to the bimap and its inverse
        // having inconsistent iteration orderings.
        Map<Currency, Country> map =
            ImmutableMap.of(
                Currency.DOLLAR, Country.CANADA,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. hack/lib/util.sh

    }
    
    # kube::util::check-file-in-alphabetical-order <file>
    # Check that the file is in alphabetical order
    #
    function kube::util::check-file-in-alphabetical-order {
      local failure_file="$1"
      if ! diff -u "${failure_file}" <(LC_ALL=C sort "${failure_file}"); then
        {
          echo
          echo "${failure_file} is not in alphabetical order. Please sort it:"
          echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. cmd/api-response.go

    	// When response is truncated (the IsTruncated element value in the response
    	// is true), you can use the key name in this field as marker in the subsequent
    	// request to get next set of objects. Server lists objects in alphabetical
    	// order Note: This element is returned only if you have delimiter request parameter
    	// specified. If response does not include the NextMaker and it is truncated,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

        std::string& custom_option_buffer) {
      // There is something worth noting in the ordering of the custom op option:
      // At the MLIR level, all the option is ordered alphabetcially, so there is
      // no way for us to retrieve the original order, so please make sure you are
      // reading custom option from dictionary rather than depending on the order.
      flexbuffers::Builder fbb;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    const (
    	// Every feature gate should add method here following this template:
    	//
    	// // owner: @username
    	// // alpha: v1.4
    	// MyFeature featuregate.Feature = "MyFeature"
    	//
    	// Feature gates should be listed in alphabetical, case-sensitive
    	// (upper before any lower case character) order. This reduces the risk
    	// of code conflicts because changes are more likely to be scattered
    	// across the file.
    
    	// owner: @ivelichkovich, @tallclair
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top