Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for alphabetically (0.2 sec)

  1. pilot/pkg/model/sidecar.go

    						sc.appendSidecarServices(servicesAdded, matchedSvc)
    					}
    				} else {
    					// We couldn't find the hostname in our config namespace
    					// We have to pick one arbitrarily for now, so we'll pick the first namespace alphabetically
    					// TODO: could we choose services more intelligently based on their ports?
    					if len(byNamespace) == 0 {
    						// This hostname isn't found anywhere
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

      }
    
      private static class WithPublicConstants {
        public static final WithPublicConstants FIRST = new WithPublicConstants();
    
        // To test that we pick the first constant alphabetically
        @SuppressWarnings("unused")
        public static final WithPublicConstants SECOND = new WithPublicConstants();
      }
    
      private static class FirstConstantIsNull {
        // To test that null constant is ignored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    	for idx := range jwtPolicies {
    		spec := jwtPolicies[idx].Spec.(*v1beta1.RequestAuthentication)
    		processedJwtRules = append(processedJwtRules, spec.JwtRules...)
    	}
    
    	// Sort the jwt rules by the issuer alphabetically to make the later-on generated filter
    	// config deterministic.
    	slices.SortBy(processedJwtRules, func(a *v1beta1.JWTRule) string {
    		return a.GetIssuer()
    	})
    
    	return policyApplier{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/config_test.go

    		{[]host.Name{"*.foo.com", "foo.com"}, "foo.com", "foo.com"},
    		{[]host.Name{"*.foo.com", "foo.com"}, "*.foo.com", "*.foo.com"},
    
    		// this passes because we sort alphabetically
    		{[]host.Name{"bar.com", "foo.com"}, "*.com", ""},
    
    		{[]host.Name{"bar.com", "*.foo.com"}, "*foo.com", ""},
    		{[]host.Name{"foo.com", "*.foo.com"}, "*foo.com", ""},
    
    		// should prioritize closest match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    	var tests = []struct {
    		name          string
    		strMap        map[string][]string
    		expectedSlice []string
    	}{
    		{
    			name:          "the returned slice should be alphabetically sorted based on the string keys in the map",
    			strMap:        map[string][]string{"foo": {"1"}, "bar": {"1", "2"}},
    			expectedSlice: []string{"bar", "foo"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top