Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 101 for chamar (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/ko/docs/project-generation.md

        - 💾 [PostgreSQL](https://www.postgresql.org): SQL 데이터베이스.
    - 🚀 [React](https://react.dev): 프론트엔드.
        - 💃 TypeScript, hooks, [Vite](https://vitejs.dev) 및 기타 현대적인 프론트엔드 스택을 사용.
        - 🎨 [Chakra UI](https://chakra-ui.com): 프론트엔드 컴포넌트.
        - 🤖 자동으로 생성된 프론트엔드 클라이언트.
        - 🧪 E2E 테스트를 위한 [Playwright](https://playwright.dev).
        - 🦇 다크 모드 지원.
    - 🐋 [Docker Compose](https://www.docker.com): 개발 환경과 프로덕션(운영).
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Oct 04 11:16:34 GMT 2024
    - 2.1K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocScanner.java

        public void next(int n) {
            pos += n;
        }
    
        public boolean lookingAt(char c) {
            return input.charAt(pos) == c;
        }
    
        public boolean lookingAt(CharSequence prefix) {
            int i = 0;
            int cpos = pos;
            while (i < prefix.length() && cpos < input.length()) {
                if (prefix.charAt(i) != input.charAt(cpos)) {
                    return false;
                }
                i++;
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java

            }
            final StringBuilder sb = new StringBuilder(s);
            int i;
            for (i = 0; i < sb.length() - 1; i++) {
                final char originalChar1 = sb.charAt(i);
                final char originalChar2 = sb.charAt(i + 1);
                final char margedChar = mergeChar(originalChar1, originalChar2);
                if (margedChar != originalChar1) {
                    sb.setCharAt(i, margedChar);
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 17 14:23:01 GMT 2025
    - 6.8K bytes
    - Click Count (1)
  4. android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

        String allMatchingChars = allMatchingChars(bitSet);
        char[] result = new char[STRING_LENGTH];
        // Fill with matching chars.
        for (int i = 0; i < result.length; i++) {
          result[i] = allMatchingChars.charAt(random.nextInt(allMatchingChars.length()));
        }
        // Replace some of chars by non-matching.
        int remaining = (int) ((100 - percentMatching) * result.length / 100.0 + 0.5);
        while (remaining > 0) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  5. docs/pt/docs/advanced/sub-applications.md

    Quando você monta uma sub-aplicação como descrito acima, o FastAPI se encarrega de comunicar o path de montagem para a sub-aplicação usando um mecanismo da especificação ASGI chamado `root_path`.
    
    Dessa forma, a sub-aplicação saberá usar esse prefixo de path para a interface de documentação.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  6. src/cmd/api/testdata/src/pkg/p1/p1.go

    	return now
    }
    
    var x = &S{
    	Public:     nil,
    	private:    nil,
    	PublicTime: Now(),
    }
    
    var parenExpr = (1 + 5)
    
    var funcLit = func() {}
    
    var m map[string]int
    
    var chanVar chan int
    
    var ifaceVar any = 5
    
    var assertVar = ifaceVar.(int)
    
    var indexVar = m["foo"]
    
    var Byte byte
    var ByteFunc func(byte) rune
    
    type ByteStruct struct {
    	B byte
    	R rune
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                        boolean active = true;
                        if (!selector.isEmpty()) {
                            if (selector.charAt(0) == '-' || selector.charAt(0) == '!') {
                                active = false;
                                selector = selector.substring(1);
                            } else if (token.charAt(0) == '+') {
                                selector = selector.substring(1);
                            }
                        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 11 17:20:46 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  8. impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

                    retValue = retValue.substring(2);
    
                    if (retValue.length() >= 2 && (retValue.charAt(1) == '|' || retValue.charAt(1) == ':')) {
                        // special case: if there is a windows drive letter, then keep the original return value
                        retValue = retValue.charAt(0) + ":" + retValue.substring(2);
                    } else {
                        // Now we expect the host
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  9. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

        }
    
        /**
         * @throws MalformedURLException
         *
         */
        private synchronized void canonicalizePath() {
            final char[] in = this.url.getPath().toCharArray();
            final char[] out = new char[in.length];
            final int length = in.length;
            int prefixLen = 0, state = 0;
    
            /*
             * The canonicalization routine
             */
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 23.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/core/lang/StringUtil.java

            for (int i = 0; i < sz; i++) {
                if (isAsciiPrintable(cs.charAt(i)) == false) {
                    return false;
                }
            }
            return true;
        }
    
        private static boolean isAsciiPrintable(final char ch) {
            return ch >= 32 && ch < 127;
        }
    
        /**
         * Creates a new String from a char array.
         * <p>
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 21.5K bytes
    - Click Count (0)
Back to Top