Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,346 for Appendp (0.15 sec)

  1. src/unicode/utf16/utf16.go

    	case 0 <= r && r < surr1, surr3 <= r && r < surrSelf:
    		// normal rune
    		return append(a, uint16(r))
    	case surrSelf <= r && r <= maxRune:
    		// needs surrogate sequence
    		r1, r2 := EncodeRune(r)
    		return append(a, uint16(r1), uint16(r2))
    	}
    	return append(a, replacementChar)
    }
    
    // Decode returns the Unicode code point sequence represented
    // by the UTF-16 encoding s.
    func Decode(s []uint16) []rune {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/RelativePath.java

         * @return The new path
         */
        public RelativePath plus(RelativePath other) {
            return append(other);
        }
    
        /**
         * Appends the given names to the end of this path.
         *
         * @param segments The names to append.
         * @param endsWithFile when true, the new path refers to a file.
         * @return The new path.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 05:20:08 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/math/big/ftoa.go

    	}
    	buf = append(buf, "0x1"...)
    	if len(hm) > 1 {
    		buf = append(buf, '.')
    		buf = append(buf, hm[1:]...)
    	}
    
    	buf = append(buf, 'p')
    	if exp64 >= 0 {
    		buf = append(buf, '+')
    	} else {
    		exp64 = -exp64
    		buf = append(buf, '-')
    	}
    	// Force at least two exponent digits, to match fmt.
    	if exp64 < 10 {
    		buf = append(buf, '0')
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/trie13.0.0.go

    //go:build go1.16
    
    package idna
    
    // appendMapping appends the mapping for the respective rune. isMapped must be
    // true. A mapping is a categorization of a rune as defined in UTS #46.
    func (c info) appendMapping(b []byte, s string) []byte {
    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		p := index
    		return append(b, mappings[mappingIndex[p]:mappingIndex[p+1]]...)
    	}
    	b = append(b, s...)
    	if c&inlineXOR == inlineXOR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 872 bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/IO.kt

    
    /**
     * Appends value to the given Appendable and simple `\n` line separator after it.
     *
     * Always using the same line separator on all systems to allow for reproducible outputs.
     */
    fun Appendable.appendReproducibleNewLine(value: CharSequence = ""): Appendable {
        assert('\r' !in value) {
            "Unexpected line ending in string."
        }
        return append(value).append("\n")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/AppendableWriter.java

        }
      }
    
      @Override
      public Writer append(char c) throws IOException {
        checkNotClosed();
        target.append(c);
        return this;
      }
    
      @Override
      public Writer append(@CheckForNull CharSequence charSeq) throws IOException {
        checkNotClosed();
        target.append(charSeq);
        return this;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/trie12.0.0.go

    //go:build !go1.16
    
    package idna
    
    // appendMapping appends the mapping for the respective rune. isMapped must be
    // true. A mapping is a categorization of a rune as defined in UTS #46.
    func (c info) appendMapping(b []byte, s string) []byte {
    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		s := mappings[index:]
    		return append(b, s[1:s[0]+1]...)
    	}
    	b = append(b, s...)
    	if c&inlineXOR == inlineXOR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 852 bytes
    - Viewed (0)
  8. test/fixedbugs/issue4085b.go

    		shouldPanic("cap out of range", func() { _ = append(t, make(T, 0, int64(n))...) })
    		shouldPanic("len out of range", func() { _ = append(t, make(T, uint64(n))...) })
    		shouldPanic("cap out of range", func() { _ = append(t, make(T, 0, uint64(n))...) })
    		shouldPanic("len out of range", func() { _ = append(t, make(T, int(n))...) })
    		shouldPanic("cap out of range", func() { _ = append(t, make(T, 0, int(n))...) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 17 17:18:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/AppendableWriter.java

        }
      }
    
      @Override
      public Writer append(char c) throws IOException {
        checkNotClosed();
        target.append(c);
        return this;
      }
    
      @Override
      public Writer append(@CheckForNull CharSequence charSeq) throws IOException {
        checkNotClosed();
        target.append(charSeq);
        return this;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/CacheVersionTest.groovy

            CacheVersion.of(2) > CacheVersion.of(1, 1)
            CacheVersion.of(1, 1) < CacheVersion.of(2)
        }
    
        def "appends component"() {
            expect:
            CacheVersion.empty().append(42) == CacheVersion.of(42)
            CacheVersion.of(42).append(23) == CacheVersion.of(42, 23)
            CacheVersion.of(42, 23).append(14) == CacheVersion.of(42, 23, 14)
        }
    
        def "copies input array"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top