Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 611 - 620 of 1,316 for Some (0.02 seconds)

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

  1. internal/s3select/sql/parser.go

    		`|(?P<Keyword>(?i)\b(?:SELECT|FROM|TOP|DISTINCT|ALL|WHERE|GROUP|BY|HAVING|UNION|MINUS|EXCEPT|INTERSECT|ORDER|LIMIT|OFFSET|TRUE|FALSE|NULL|IS|NOT|ANY|SOME|BETWEEN|AND|OR|LIKE|ESCAPE|AS|IN|BOOL|INT|INTEGER|STRING|FLOAT|DECIMAL|NUMERIC|TIMESTAMP|AVG|COUNT|MAX|MIN|SUM|COALESCE|NULLIF|CAST|DATE_ADD|DATE_DIFF|EXTRACT|TO_STRING|TO_TIMESTAMP|UTCNOW|CHAR_LENGTH|CHARACTER_LENGTH|LOWER|SUBSTRING|TRIM|UPPER|LE...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.9K bytes
    - Click Count (0)
  2. ci/devinfra/docker/windows2022/Dockerfile

    ENV BAZEL_VC "C:\Program Files\Microsoft Visual Studio\2022\Community\VC"
    
    # Environment variables to prevent auto-conversion of Linux-like paths to Windows paths.
    # This is necessary as some paths end up invalid/mangled.
    ENV MSYS_NO_PATHCONV 1
    ENV MSYS2_ARG_CONV_EXCL *
    
    # This should only be necessary if there are multiple, differently-versioned
    # MSVC compilers installed, and a particular one should be used.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Mar 04 19:50:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. cmd/erasure-object.go

    			metaArr[index].VersionID = versionID
    			if !metaArr[index].InlineData() {
    				// If the data is not inlined, we may end up incorrectly
    				// inlining the data here, that leads to an inconsistent
    				// situation where some objects are were not inlined
    				// were now inlined, make sure to `nil` the Data such
    				// that xl.meta is written as expected.
    				metaArr[index].Data = nil
    			}
    			metaArr[index].Metadata = srcInfo.UserDefined
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 80.4K bytes
    - Click Count (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                throws RepositoryMetadataStoreException {
            // TODO currently this is first wins, but really we should take the latest by comparing either the
            // snapshot timestamp, or some other timestamp later encoded into the metadata.
            // TODO this needs to be repeated here so the merging doesn't interfere with the written metadata
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java

            SourceSetContainer javaSourceSets = GradleUtils.getJavaSourceSets(getProject());
            if (javaSourceSets.findByName(SourceSet.MAIN_SOURCE_SET_NAME) == null) {
                // some test projects don't have a main source set
                return Collections.emptySet();
            }
            return javaSourceSets.getByName(SourceSet.MAIN_SOURCE_SET_NAME)
                .getOutput()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 17.6K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

            return missingClassExcludes;
        }
    
        @Classpath
        @SkipWhenEmpty
        public Set<File> getJarsToScan() {
            // These are SelfResolvingDependency, and some of them backed by file collections, like the Gradle API files,
            // or dependencies added as `files(...)`, we can't be sure if those are third party or not.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

          ListenableFuture<?> unused = serializer.submitAsync(() -> settableFuture, directExecutor());
          for (int i = 0; i < 50_000; i++) {
            if (i % DIRECT_EXECUTIONS_PER_THREAD == 0) {
              // after some number of iterations, switch threads
              unused =
                  serializer.submit(
                      () -> {
                        holder.count++;
                        return null;
                      },
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  8. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java

                verify(mockInfo, times(1)).encode(any(byte[].class), anyInt());
    
                // Verify total bytes written
                assertTrue(bytesWritten > 32); // At least the fixed part plus some info
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    
        @ParameterizedTest
        @DisplayName("Test writeBytesWireFormat with different info sizes")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 13.9K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/security/first-steps.md

    那是因為它沿用了 OpenAPI 規格中的名稱。如此一來,若你要深入查閱這些安全方案,便能直接複製貼上去搜尋更多資訊。
    
    ///
    
    變數 `oauth2_scheme` 是 `OAuth2PasswordBearer` 的實例,但同時它也是「可呼叫的」(callable)。
    
    它可以這樣被呼叫:
    
    ```Python
    oauth2_scheme(some, parameters)
    ```
    
    因此它可以配合 `Depends` 使用。
    
    ### 如何使用 { #use-it }
    
    現在你可以在相依性中傳入 `oauth2_scheme` 與 `Depends` 搭配。
    
    {* ../../docs_src/security/tutorial001_an_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/security/first-steps.md

    这是因为它使用了与 OpenAPI 规范中相同的名称。这样当你需要深入了解这些安全方案时,可以直接复制粘贴去查找更多信息。
    
    ///
    
    `oauth2_scheme` 变量是 `OAuth2PasswordBearer` 的一个实例,同时它也是“可调用”的。
    
    可以像这样调用:
    
    ```Python
    oauth2_scheme(some, parameters)
    ```
    
    因此,它可以与 `Depends` 一起使用。
    
    ### 使用 { #use-it }
    
    现在你可以通过 `Depends` 将 `oauth2_scheme` 作为依赖传入。
    
    {* ../../docs_src/security/tutorial001_an_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.5K bytes
    - Click Count (0)
Back to Top