Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 107 for alphabetically (0.33 sec)

  1. 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)
  2. 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)
  3. android/pom.xml

                  <exclude>%regex[.*[$]\d+.class]</exclude>
                </excludes>
                <redirectTestOutputToFile>true</redirectTestOutputToFile>
                <runOrder>alphabetical</runOrder>
                <!-- Set max heap for tests. -->
                <!-- Catch dependencies on the default locale by setting it to hi-IN. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pom.xml

                  <exclude>%regex[.*[$]\d+.class]</exclude>
                </excludes>
                <redirectTestOutputToFile>true</redirectTestOutputToFile>
                <runOrder>alphabetical</runOrder>
                <!-- Set max heap for tests. -->
                <!-- Catch dependencies on the default locale by setting it to hi-IN. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    // (strings, etc.) are ignored.
    //
    // Children are traversed in the order in which they appear in the
    // respective node's struct definition. A package's files are
    // traversed in the filenames' alphabetical order.
    func Apply(root ast.Node, pre, post ApplyFunc) (result ast.Node) {
    	parent := &struct{ ast.Node }{root}
    	defer func() {
    		if r := recover(); r != nil && r != abort {
    			panic(r)
    		}
    		result = parent.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				"X-Remote-User":                                            {"Bob"},
    				"X-Remote-Group":                                           {"one-a", "one-b"},
    				"X-Remote-Extra-Alpha":                                     {"alphabetical"},
    				"X-Remote-Extra-Alph4num3r1c":                              {"alphanumeric"},
    				"X-Remote-Extra-Percent%20encoded":                         {"percent encoded"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          }
          group.self += (place.Pos == stack.Sources.length-1) ? stack.Value : 0;
          group.places.push(place);
        }
    
        // Order by decreasing cost (makes it easier to spot heavy functions).
        // Though alphabetical ordering is a potential alternative that will make
        // profile comparisons easier.
        groups.sort(function(a, b) {
          return (b.sumpos + b.sumneg) - (a.sumpos + a.sumneg);
        });
    
        return groups;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/internal/reflectlite/type.go

    	// In both cases the algorithm is a linear scan over the two
    	// lists - T's methods and V's methods - simultaneously.
    	// Since method tables are stored in a unique sorted order
    	// (alphabetical, with no duplicate method names), the scan
    	// through V's methods must hit a match for each of T's
    	// methods along the way, or else V does not implement T.
    	// This lets us run the scan in overall linear time instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                                implementation 'org.assertj:assertj-core:3.24.2'
                            }
                        }
                    }
                }
    
                // alphabetical ordering seems to interfere here, if we used `s` instead of `t`, the check passes just fine
                def testImplHolder = configurations.create("uasdf")
                def testCopy = configurations.testImplementation.copy()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/graph/TraverserTest.java

      /**
       * Creates a graph from a list of node pairs (encoded as strings, e.g. "ab" means that this graph
       * has an edge between 'a' and 'b').
       *
       * <p>The {@code successors} are always returned in alphabetical order.
       */
      private static SuccessorsFunction<Character> createGraph(boolean directed, String... edges) {
        ImmutableMultimap.Builder<Character, Character> graphMapBuilder = ImmutableMultimap.builder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
Back to top