Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ababab (0.13 sec)

  1. src/index/suffixarray/suffixarray_test.go

    		}
    		return out
    	})
    }
    
    // test tests an arbitrary suffix array construction function.
    // Generates many inputs, builds and checks suffix arrays.
    func test(t *testing.T, build func([]byte) []int) {
    	t.Run("ababab...", func(t *testing.T) {
    		// Very repetitive input has numLMS = len(x)/2-1
    		// at top level, the largest it can be.
    		// But maxID is only two (aba and ab$).
    		size := 100000
    		if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    		}
    	}
    }
    
    // assignID_8_32 assigns a dense ID numbering to the
    // set of LMS-substrings respecting string ordering and equality,
    // returning the maximum assigned ID.
    // For example given the input "ababab", the LMS-substrings
    // are "aba", "aba", and "ab", renumbered as 2 2 1.
    // sa[len(sa)-numLMS:] holds the LMS-substring indexes
    // sorted in string order, so to assign numbers we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertNull(StringUtil.decamelize(null));
            assertEquals("EMP", StringUtil.decamelize("Emp"));
            assertEquals("AAA_BBB", StringUtil.decamelize("aaaBbb"));
            assertEquals("AAA_BBB", StringUtil.decamelize("AaaBbb"));
            assertEquals("AAA_BBB_C", StringUtil.decamelize("aaaBbbC"));
            assertEquals("USER_ID", StringUtil.decamelize("UserId"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/regexp/all_test.go

    	{"foo:and:bar", "foo", -1, []string{"", ":and:bar"}},
    	{"foo:and:bar", "bar", -1, []string{"foo:and:", ""}},
    	{"foo:and:bar", "baz", -1, []string{"foo:and:bar"}},
    	{"baabaab", "a", -1, []string{"b", "", "b", "", "b"}},
    	{"baabaab", "a*", -1, []string{"b", "b", "b"}},
    	{"baabaab", "ba*", -1, []string{"", "", "", ""}},
    	{"foobar", "f*b*", -1, []string{"", "o", "o", "a", "r"}},
    	{"foobar", "f+.*b+", -1, []string{"", "ar"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. docs/yo/docs/index.md

    Láti ní òye síi nípa rẹ̀, wo abala àwọn <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">Àlá</a>.
    
    ## Àṣàyàn Àwọn Àfikún Ìgbẹ́kẹ̀lé Kóòdù
    
    Èyí tí Pydantic ń lò:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment/docker.md

    Então, se seu aplicativo consumir muito memória (por exemplo, com modelos de aprendizado de máquina), e seu servidor tiver muitos núcleos de CPU **mas pouca memória**, então seu contêiner pode acabar tentando usar mais memória do que está disponível e degradar o desempenho muito (ou até mesmo travar). 🚨
    
    ### Criando um `Dockerfile`
    
    Aqui está como você criaria um `Dockerfile` baseado nessa imagem:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
Back to top