Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for webform (0.15 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.wt.stf",
    				"application/vnd.wv.csp+wbxml",
    				"application/vnd.wv.csp+xml",
    				"application/vnd.wv.ssp+xml",
    				"application/vnd.xara",
    				"application/vnd.xfdl",
    				"application/vnd.xfdl.webform",
    				"application/vnd.xmi+xml",
    				"application/vnd.xmpie.cpkg",
    				"application/vnd.xmpie.dpkg",
    				"application/vnd.xmpie.plan",
    				"application/vnd.xmpie.ppkg",
    				"application/vnd.xmpie.xlim",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

          "io.k8s.api.authorization.v1.SelfSubjectAccessReview": {
            "description": "SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a spec.namespace means \"in all namespaces\".  Self is a special case, because users should always be able to check whether they can perform an action",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    }
    
    // gcDrainN blackens grey objects until it has performed roughly
    // scanWork units of scan work or the G is preempted. This is
    // best-effort, so it may perform less work if it fails to get a work
    // buffer. Otherwise, it will perform at least n units of work, but
    // may perform more because scanning is always done in whole object
    // increments. It returns the amount of scan work performed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    * try to download the corresponding `.asc` file
    * if it's present
    ** automatically download the keys required to perform verification of the signature
    ** verify the artifact using the downloaded public keys
    ** if signature verification passes, perform additional requested checksum verification
    * if it's absent, fallback to checksum verification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    //
    // 3. GC performs mark termination.
    //
    //    a. Stop the world.
    //
    //    b. Set gcphase to _GCmarktermination, and disable workers and
    //    assists.
    //
    //    c. Perform housekeeping like flushing mcaches.
    //
    // 4. GC performs the sweep phase.
    //
    //    a. Prepare for the sweep phase by setting gcphase to _GCoff,
    //    setting up sweep state and disabling the write barrier.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

    <source>
      @type tail
      path /var/log/containers/*.log
      pos_file /var/log/gcp-containers.log.pos
      # Tags at this point are in the format of:
      # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
      tag reform.*
      read_from_head true
      <parse>
        @type multi_format
        <pattern>
          format json
          time_key time
          time_format %Y-%m-%dT%H:%M:%S.%NZ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              ]
          )
          def model(self, input_tensor: core.Tensor) -> Mapping[str, core.Tensor]:
            """Performs a gather and a 2D convolution operation.
    
            Args:
              input_tensor: Input tensor to perform operation on.
    
            Returns:
              A map of: output key -> output result.
            """
    
            out = array_ops.gather_v2(self.embedding_w, input_tensor)
    
            # One pure conv
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    File operations are fundamental to nearly every Gradle build.
    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    [[sec:hard_coded_file_paths]]
    == Hardcoded paths and laziness
    
    It is best practice to *avoid* hardcoded paths in build scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

     * calling it should not be necessary with a high throughput cache. Only caches built with {@link
     * #removalListener removalListener}, {@link #expireAfterWrite expireAfterWrite}, {@link
     * #expireAfterAccess expireAfterAccess}, {@link #weakKeys weakKeys}, {@link #weakValues
     * weakValues}, or {@link #softValues softValues} perform periodic maintenance.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

       * multimap to be a view, but it means that the function will be applied many times for bulk
       * operations like {@link Multimap#containsValue} and {@code Multimap.toString()}. For this to
       * perform well, {@code function} should be fast. To avoid lazy evaluation when the returned
       * multimap doesn't need to be a view, copy the returned multimap into a new multimap of your
       * choosing.
       *
       * @since 7.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top