Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 486 for Upper (0.09 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/upper/groovy/settings.gradle

    rootProject.name = 'upper'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27 bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/BaseEncoding.java

          byte[] newDecodabet = Arrays.copyOf(decodabet, decodabet.length);
          for (int upper = 'A'; upper <= 'Z'; upper++) {
            int lower = upper | 0x20;
            byte decodeUpper = decodabet[upper];
            byte decodeLower = decodabet[lower];
            if (decodeUpper == -1) {
              newDecodabet[upper] = decodeLower;
            } else {
              checkState(
                  decodeLower == -1,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/VersionCoverage.groovy

        /**
         * Filters the given versions to those that are between the given closed bounds.
         *
         * @param versionsToFilter the versions to filter
         * @param from the lower bound, inclusive
         * @param to the upper bound, inclusive
         */
        static Set<String> versionsBetweenInclusive(Collection<String> versionsToFilter, String from, String to) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 06 16:42:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/config.go

    	// MinimumSeats is the minimum number of seats a request must occupy.
    	MinimumSeats uint64 `json:"minimumSeats,omitempty"`
    
    	// MaximumSeatsLimit is an upper limit on the max seats a request can occupy.
    	//
    	// NOTE: work_estimate_seats_samples metric uses the value of maximumSeats
    	// as the upper bound, so when we change maximumSeats we should also
    	// update the buckets of the metric.
    	MaximumSeatsLimit uint64 `json:"maximumSeatsLimit,omitempty"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_cd_gopath_different.txt

    exec $WORK/tmp/a.exe
    stderr 'linkXworked'
    rm $WORK/tmp/a.exe
    
    # Apply identity function to GOPATH
    exec ./run_go$GOEXE $GOPATH/src/my.pkg/main $GOPATH UPPER build -o $WORK/tmp/a.exe -ldflags -X=my.pkg.Text=linkXworked
    exec $WORK/tmp/a.exe
    stderr 'linkXworked'
    rm $WORK/tmp/a.exe
    
    # Apply identity function to GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue25776.go

    // run
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    const (
    	Upper       = true
    	blas_Upper  = 121
    	badTriangle = "bad triangle"
    )
    
    // Triangular represents a triangular matrix. Triangular matrices are always square.
    type Triangular interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 20:08:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  7. internal/bucket/replication/datatypes_gen.go

    		zb0001, bts, err = msgp.ReadStringBytes(bts)
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = StatusType(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z StatusType) Msgsize() (s int) {
    	s = msgp.StringPrefixSize + len(string(z))
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    func TestSpecialCase(t *testing.T) {
    	lower := "abcçdefgğhıijklmnoöprsştuüvyz"
    	upper := "ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ"
    	u := ToUpperSpecial(unicode.TurkishCase, upper)
    	if u != upper {
    		t.Errorf("Upper(upper) is %s not %s", u, upper)
    	}
    	u = ToUpperSpecial(unicode.TurkishCase, lower)
    	if u != upper {
    		t.Errorf("Upper(lower) is %s not %s", u, upper)
    	}
    	l := ToLowerSpecial(unicode.TurkishCase, lower)
    	if l != lower {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            given:
            def bean = new Bean()
    
            when:
            // Exercise setters
            bean.url = 'lower-case'
            bean.URL = 'upper-case'
            bean.cCompiler = 'lower-case first char'
            bean.CCompiler = 'upper-case first char'
            bean.cppCompiler = 'cppCompiler'
            bean.CPPCompiler = 'CPPCompiler'
            bean.a = 'some a'
            bean.b = 'some b'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/net/textproto/reader.go

    	}
    	if noCanon {
    		return string(a), true
    	}
    
    	upper := true
    	for i, c := range a {
    		// Canonicalize: first letter upper case
    		// and upper case after each dash.
    		// (Host, User-Agent, If-Modified-Since).
    		// MIME headers are ASCII only, so no Unicode issues.
    		if upper && 'a' <= c && c <= 'z' {
    			c -= toLower
    		} else if !upper && 'A' <= c && c <= 'Z' {
    			c += toLower
    		}
    		a[i] = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top