Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for alphabeta (0.35 sec)

  1. src/strings/builder_test.go

    	s1 := b.String()
    	b.WriteString("beta")
    	check(t, &b, "alphabeta")
    	s2 := b.String()
    	b.WriteString("gamma")
    	check(t, &b, "alphabetagamma")
    	s3 := b.String()
    
    	// Check that subsequent operations didn't change the returned strings.
    	if want := "alpha"; s1 != want {
    		t.Errorf("first String result is now %q; want %q", s1, want)
    	}
    	if want := "alphabeta"; s2 != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/BaseEncoding.java

        Base16Encoding(String name, String alphabetChars) {
          this(new Alphabet(name, alphabetChars.toCharArray()));
        }
    
        private Base16Encoding(Alphabet alphabet) {
          super(alphabet, null);
          checkArgument(alphabet.chars.length == 16);
          for (int i = 0; i < 256; ++i) {
            encoding[i] = alphabet.encode(i >>> 4);
            encoding[i | 0x100] = alphabet.encode(i & 0xF);
          }
        }
    
        @Override
    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. cmd/dummy-data-generator_test.go

    	}
    	if skipOffset < 0 {
    		panic("Negative rotations are not allowed")
    	}
    
    	skipOffset %= int64(len(alphabets))
    	as := make([]byte, 2*len(alphabets))
    	copy(as, alphabets)
    	copy(as[len(alphabets):], alphabets)
    	b := as[skipOffset : skipOffset+int64(len(alphabets))]
    	return &DummyDataGen{
    		length: totalLength,
    		b:      b,
    	}
    }
    
    func (d *DummyDataGen) Read(b []byte) (n int, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/BaseEncoding.java

        Base16Encoding(String name, String alphabetChars) {
          this(new Alphabet(name, alphabetChars.toCharArray()));
        }
    
        private Base16Encoding(Alphabet alphabet) {
          super(alphabet, null);
          checkArgument(alphabet.chars.length == 16);
          for (int i = 0; i < 256; ++i) {
            encoding[i] = alphabet.encode(i >>> 4);
            encoding[i | 0x100] = alphabet.encode(i & 0xF);
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            for (int i = 0; i < text.length();) {
                String[] alphabets;
                if (i + 1 < text.length() && convertMap.get(text.substring(i, i + 2)) != null) {
                    alphabets = convertMap.get(text.substring(i, i + 2));
                    i += 2;
                } else {
                    if (convertMap.get(text.substring(i, i + 1)) != null) {
                        alphabets = convertMap.get(text.substring(i, i + 1));
                    } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_doc.txt

    # go doc should find module documentation
    
    env GO111MODULE=on
    env GOFLAGS=-mod=mod
    [short] skip
    
    # Check when module x is inside GOPATH/src.
    go doc y
    stdout 'Package y is.*alphabet'
    stdout 'import "x/y"'
    go doc x/y
    stdout 'Package y is.*alphabet'
    ! go doc quote.Hello
    stderr 'doc: symbol quote is not a type' # because quote is not in local cache
    go list rsc.io/quote # now it is
    go doc quote.Hello
    stdout 'Hello returns a greeting'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/CharTypeFilterFactory.java

        private final boolean alphabetic;
    
        private final boolean digit;
    
        private final boolean letter;
    
        public CharTypeFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name,
                final Settings settings) {
            super(indexSettings, name, settings);
    
            alphabetic = settings.getAsBoolean("alphabetic", true);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/encoding/base32/base32.go

    	invalidIndex = '\xff'
    )
    
    // NewEncoding returns a new padded Encoding defined by the given alphabet,
    // which must be a 32-byte string that contains unique byte values and
    // does not contain the padding character or CR / LF ('\r', '\n').
    // The alphabet is treated as a sequence of byte values
    // without any special treatment for multi-byte UTF-8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/encoding/base64/base64.go

    	invalidIndex = '\xff'
    )
    
    // NewEncoding returns a new padded Encoding defined by the given alphabet,
    // which must be a 64-byte string that contains unique byte values and
    // does not contain the padding character or CR / LF ('\r', '\n').
    // The alphabet is treated as a sequence of byte values
    // without any special treatment for multi-byte UTF-8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

                .collect(Collectors.toList());
            return new UpgradedProperty(containingType, propertyName, methodName, methodDescriptor, upgradedAccessors);
        }
    
        @JsonPropertyOrder(alphabetic = true)
        static class UpgradedProperty {
            private final String propertyName;
            private final String methodName;
            private final String methodDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top