Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for alphabetically (0.29 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         *     <li>the lines in the resulting files are separated by a pre-set separator instead of the system default line separator</li>
         *     <li>the properties are sorted alphabetically</li>
         * </ul>
         *
         * <p>Like with {@link java.util.Properties#store(java.io.OutputStream, String)}, Unicode characters are
         * escaped when using the default Latin-1 (ISO-8559-1) encoding.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. pkg/test/framework/resource/version.go

    	}
    	var vers []IstioVersion
    	for _, v := range *rv {
    		vers = append(vers, v)
    	}
    	return vers
    }
    
    // Default returns the revision with the newest `IstioVersion`, or in the case of a tie, the first
    // alphabetically.
    func (rv *RevVerMap) Default() string {
    	if rv == nil || len(*rv) == 0 {
    		return ""
    	}
    	max := rv.Maximum()
    	var candidates []string
    	for rev, ver := range *rv {
    		if ver.Compare(max) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. .github/CODEOWNERS

    ##
    ## CODEOWNERS style rules:
    ## 1. Prefer team ownership over individual user ownership.
    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. cmd/signature-v2.go

    	xhttp "github.com/minio/minio/internal/http"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // Whitelist resource list that will be used in query string for signature-V2 calculation.
    //
    // This list should be kept alphabetically sorted, do not hastily edit.
    var resourceList = []string{
    	"acl",
    	"cors",
    	"delete",
    	"encryption",
    	"legal-hold",
    	"lifecycle",
    	"location",
    	"logging",
    	"notification",
    	"partNumber",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. cmd/signature-v4.go

    			if idx > 0 {
    				buf.WriteByte(',')
    			}
    			buf.WriteString(signV4TrimAll(v))
    		}
    		buf.WriteByte('\n')
    	}
    	return buf.String()
    }
    
    // getSignedHeaders generate a string i.e alphabetically sorted, semicolon-separated list of lowercase request header names
    func getSignedHeaders(signedHeaders http.Header) string {
    	var headers []string
    	for k := range signedHeaders {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/plan.go

    		}
    	}
    
    	return outputapiv1alpha3.AvailableUpgrade{Description: up.Description, Components: components}
    }
    
    // sortedSliceFromStringStringArrayMap returns a slice of the keys in the map sorted alphabetically
    func sortedSliceFromStringStringArrayMap(strMap map[string][]string) []string {
    	strSlice := []string{}
    	for k := range strMap {
    		strSlice = append(strSlice, k)
    	}
    	sort.Strings(strSlice)
    	return strSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top