Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for prototype (0.35 sec)

  1. src/main/resources/app.xml

    	</component>
    	<component name="themeHelper" class="org.codelibs.fess.helper.ThemeHelper">
    	</component>
    	<component name="queryStringBuilder" class="org.codelibs.fess.util.QueryStringBuilder" instance="prototype">
    	</component>
    	<component name="queryParser" class="org.codelibs.fess.query.parser.QueryParser">
    	</component>
    	<component name="facetInfo" class="org.codelibs.fess.entity.FacetInfo">
    	</component>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Nov 19 02:22:47 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/11-language-change.yml

          label: Performance Costs
          description: "What is the compile time cost? What is the run time cost? "
        validations:
          required: false
    
      - type: textarea
        id: prototype
        attributes:
          label: "Prototype"
          description: "Can you describe a possible implementation?"
        validations:
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Joiner.java

      }
    
      private final String separator;
    
      private Joiner(String separator) {
        this.separator = checkNotNull(separator);
      }
    
      private Joiner(Joiner prototype) {
        this.separator = prototype.separator;
      }
    
      /*
       * In this file, we use <? extends @Nullable Object> instead of <?> to work around a Kotlin bug
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Joiner.java

      }
    
      private final String separator;
    
      private Joiner(String separator) {
        this.separator = checkNotNull(separator);
      }
    
      private Joiner(Joiner prototype) {
        this.separator = prototype.separator;
      }
    
      /*
       * In this file, we use <? extends @Nullable Object> instead of <?> to work around a Kotlin bug
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  5. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/plugins/atomicfu/atomicfu-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/fir-plugin-prototype/testData" />
            <option value="$PROJECT_DIR$/plugins/imports-dumper/testData" />
            <option value="$PROJECT_DIR$/plugins/jvm-abi-gen/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-base/testData" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Apr 19 08:18:44 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. doc/asm.html

    This is indicated by an argument size annotation of <code>$<i>n</i>-0</code>
    on the <code>TEXT</code> instruction.
    Otherwise, pointer information must be provided by
    a Go prototype for the function in a Go source file,
    even for assembly functions not called directly from Go.
    (The prototype will also let <code>go</code> <code>vet</code> check the argument references.)
    At the start of the function, the arguments are assumed
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  7. .space/CODEOWNERS

    /plugins/allopen/ "Kotlin Compiler Core"
    /plugins/android-extensions/ "Kotlin Compiler Core"
    /plugins/assign-plugin/ "Kotlin Compiler Core"
    /plugins/atomicfu/ "Kotlin Libraries"
    /plugins/compose/ Compose
    /plugins/fir-plugin-prototype/ "Kotlin Compiler Core"
    /plugins/imports-dumper/ "Kotlin Compiler Core"
    /plugins/jvm-abi-gen/ "Kotlin JVM"
    /plugins/kapt3/ "Kotlin Compiler Core"
    /plugins/kapt3/kapt3-compiler/test/ "Kotlin Compiler Core" "Kotlin JVM"
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

        * A sample DaemonSet to deploy Flexvolume drivers is now available.
    
    * [prototype] Volume snapshots
    
      * You can now create a volume snapshot by calling the Kubernetes API.
    
      * Note that the prototype does not support quiescing before snapshot, so snapshots might be inconsistent.
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/collect/Maps.java

          /*
           * requireNonNull is safe because propertyNames contains only non-null elements.
           *
           * Accordingly, we have it annotated as returning `Enumeration<? extends Object>` in our
           * prototype checker's JDK. However, the checker still sees the return type as plain
           * `Enumeration<?>`, probably because of one of the following two bugs (and maybe those two
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/RequestLine.kt

       * HTTP/2.
       */
      fun get(
        request: Request,
        proxyType: Proxy.Type,
      ): String =
        buildString {
          append(request.method)
          append(' ')
          if (includeAuthorityInRequestLine(request, proxyType)) {
            append(request.url)
          } else {
            append(requestPath(request.url))
          }
          append(" HTTP/1.1")
        }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2K bytes
    - Viewed (0)
Back to top