Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for alphabetically (0.24 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

        The input arguments and attributes are passed to the TF op. The outputs are
        outputs of the TF op.
    
        Note that `_name` is a required attribute specifying the TF op to run.
        TFRT attributes are sorted alphabetically, passed in as positional
        attributes to the TFRT kernel, rather than as named attributes.
    
        Example:
          To run "tf.MatMul" op, which has two boolean attributes,
            1. Set _name = "MatMul"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** If both parts are numeric, the highest numeric value is **higher**: `1.1` < `1.2`
    ** If one part is numeric, it is considered **higher** than the non-numeric part: `1.a` < `1.1`
    ** If both are non-numeric, the parts are compared **alphabetically**, in a **case-sensitive** manner: `1.A` < `1.B` < `1.a` < `1.b`
    ** A version with an extra numeric part is considered **higher** than a version without (even when it's zero): `1.1` < `1.1.0`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            "12"     | "12.2.3"
            "12"     | "13"
            "1.0-1"  | "1.0-2"
            "1.0-1"  | "1.0.2"
            "1.0-1"  | "1+0_2"
            "2.11.4" | "2.11.4+4"
        }
    
        def "non-numeric parts are compared alphabetically and are case sensitive"() {
            expect:
            compare(smaller, larger) < 0
            compare(larger, smaller) > 0
            compare(smaller, smaller) == 0
            compare(larger, larger) == 0
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

     *     <li>the lines in the resulting files are separated by a pre-set separator (defaults to
     *         {@literal '\n'}) instead of the system default line separator</li>
     *     <li>the properties are sorted alphabetically</li>
     * </ul>
     *
     * <p>Like with {@link java.util.Properties}, Unicode characters are escaped when using the
     * default Latin-1 (ISO-8559-1) encoding.</p>
     *
     * @see java.util.Properties#store(OutputStream, String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. build-logic/settings.gradle.kts

    // Shared information about external modules
    include("dependency-modules")
    
    // Special purpose build logic for root project - please preserve alphabetical order
    include("cleanup")
    include("idea")
    include("lifecycle")
    
    // Special purpose build logic for subproject - please preserve alphabetical order
    include("binary-compatibility")
    include("build-init-samples")
    include("buildquality")
    include("documentation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTask.kt

    import org.gradle.api.tasks.TaskAction
    import java.io.File
    
    
    /**
     * This [Task][org.gradle.api.Task] checks that the contents of a given accepted API changes files
     * are present in alphabetical order (by type, then member), and throws an exception and reports
     * any changes that are not.
     */
    @CacheableTask
    abstract class AlphabeticalAcceptedApiChangesTask : AbstractAcceptedApiChangesMaintenanceTask() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. hack/verify-description.sh

    # This led to many types.go have missing descriptions.
    # These types.go files are listed in hack/.descriptions_failures
    # Check that the file is in alphabetical order
    failure_file="${KUBE_ROOT}/hack/.descriptions_failures"
    kube::util::check-file-in-alphabetical-order "${failure_file}"
    
    failing_files=()
    while IFS='' read -r line; do failing_files+=("$line"); done < <(cat "$failure_file")
    
    result=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/pilot/status_test.go

    	tests := []struct {
    		name    string
    		input   map[string]*discovery.DiscoveryResponse
    		want    string
    		wantErr bool
    	}{
    		{
    			name: "prints multiple istiod inputs to buffer in alphabetical order by pod name",
    			input: map[string]*discovery.DiscoveryResponse{
    				"istiod1": xdsResponseInput("istiod1", []clientConfigInput{
    					{
    						proxyID:        "proxy1",
    						clusterID:      "cluster1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    //  1. legacy kube group preferred version, extensions preferred version, metrics preferred version, legacy
    //     kube any version, extensions any version, metrics any version, all other groups alphabetical preferred version,
    //     all other groups alphabetical.
    //
    // TODO callers of this method should be updated to build their own specific restmapper based on their scheme for their tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

            }
            // Generate external jar with entries in alphabetical order
            def externalJar = file('build/libs/external.jar')
            succeeds(":a:javadoc", "-Dreverse=false")
            new ZipTestFixture(externalJar).hasDescendantsInOrder('META-INF/MANIFEST.MF', 'a', 'b', 'c', 'd')
    
            when:
            // Re-generate external jar with entries in reverse alphabetical order
            succeeds(":a:javadoc", "-Dreverse=true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top