Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 107 for alphabetically (0.35 sec)

  1. android/guava/src/com/google/common/graph/Traverser.java

       * depth 1, then 2, and so on.
       *
       * <p><b>Example:</b> The following graph with {@code startNode} {@code a} would return nodes in
       * the order {@code abcdef} (assuming successors are returned in alphabetical order).
       *
       * <pre>{@code
       * b ---- a ---- d
       * |      |
       * |      |
       * e ---- c ---- f
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Traverser.java

       * depth 1, then 2, and so on.
       *
       * <p><b>Example:</b> The following graph with {@code startNode} {@code a} would return nodes in
       * the order {@code abcdef} (assuming successors are returned in alphabetical order).
       *
       * <pre>{@code
       * b ---- a ---- d
       * |      |
       * |      |
       * e ---- c ---- f
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher_test.go

    	prefix := "pods"
    	fn := func() runtime.Object { return &example.PodList{} }
    	server, store := newEtcdTestStorage(t, prefix)
    	defer server.Terminate(t)
    
    	// We need the list to be sorted by name to later check the alphabetical order of
    	// returned results.
    	objects := []*example.Pod{
    		{ObjectMeta: metav1.ObjectMeta{Name: "bar", Namespace: "test-ns"}},
    		{ObjectMeta: metav1.ObjectMeta{Name: "baz", Namespace: "test-ns"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    During parallel execution, each worker handles a specific project exclusively.
    Task dependencies are respected, with workers prioritizing upstream tasks.
    However, tasks may not execute in alphabetical order, as in sequential mode.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. 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)
  6. docs/en/docs/tutorial/metadata.md

    <img src="/img/tutorial/metadata/image02.png">
    
    ### Order of tags
    
    The order of each tag metadata dictionary also defines the order shown in the docs UI.
    
    For example, even though `users` would go after `items` in alphabetical order, it is shown before them, because we added their metadata as the first dictionary in the list.
    
    ## OpenAPI URL
    
    By default, the OpenAPI schema is served at `/openapi.json`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. operator/pkg/util/yaml_test.go

    			inVals: map[string]any{
    				"foo": "bar",
    				"yo": map[string]any{
    					"istio": "bar",
    				},
    			},
    			expectedOut: `foo: bar
    yo:
      istio: bar
    `,
    		},
    		{
    			desc: "alphabetical",
    			inVals: map[string]any{
    				"foo": "yaml",
    				"abc": "f",
    			},
    			expectedOut: `abc: f
    foo: yaml
    `,
    		},
    		{
    			desc:        "expected-err-nil",
    			inVals:      nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:00:14 UTC 2024
    - 6.7K 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. pkg/proxy/iptables/proxier_test.go

    				// non-KUBE-* goes after KUBE-*
    				return false
    			default:
    				// We have two KUBE-* chains or two non-KUBE-* chains; either
    				// way they sort alphabetically
    				return table.Chains[i].Name < table.Chains[j].Name
    			}
    		})
    	}
    
    	// Sort KUBE-NODEPORTS chains by service name
    	chain, _ := dump.GetChain(utiliptables.TableFilter, kubeNodePortsChain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    If more than one init script is found, they will all be executed in the order specified above.
    
    Scripts in a given directory are executed in alphabetical order.
    For example, a tool can specify an init script on the command line and another in the home directory to define the environment.
    Both scripts will run when Gradle is executed.
    
    [[sec:writing_an_init_script]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top