Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 187 for tareas (0.03 sec)

  1. src/main/java/org/codelibs/core/io/ResourceUtil.java

        }
    
        /**
         * Returns the context class loader.
         *
         * @return the context class loader
         */
        public static ClassLoader getClassLoader() {
            return Thread.currentThread().getContextClassLoader();
        }
    
        /**
         * Returns the resource from the context class loader.
         *
         * @param path
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  2. docs/es/docs/virtual-environments.md

    Muchos errores exóticos al instalar un paquete se resuelven simplemente actualizando `pip` primero.
    
    /// tip | Consejo
    
    Normalmente harías esto **una vez**, justo después de crear el entorno virtual.
    
    ///
    
    Asegúrate de que el entorno virtual esté activo (con el comando anterior) y luego ejecuta:
    
    <div class="termy">
    
    ```console
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

      /**
       * Test that MockWebServer blocks for a call to enqueue() if a request is made before a mock
       * response is ready.
       */
      @Test
      fun dispatchBlocksWaitingForEnqueue() {
        Thread {
          try {
            Thread.sleep(1000)
          } catch (ignored: InterruptedException) {
          }
          server.enqueue(
            MockResponse
              .Builder()
              .body("enqueued in the background")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 03 22:38:00 UTC 2025
    - 28K bytes
    - Viewed (0)
  4. tensorflow/c/BUILD

        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            ":c_api_internal",
        ],
    )
    
    # -----------------------------------------------------------------------------
    # Public targets
    
    filegroup(
        name = "headers",
        srcs = [
            "c_api.h",
            "c_api_experimental.h",
            "c_api_macros.h",
            "tensor_interface.h",
            "tf_attrtype.h",
            "tf_buffer.h",
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 03:53:25 UTC 2025
    - 30.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         * <p>
         * The implementation must handle:
         * <ul>
         *   <li>Both forward and back slashes as path separators</li>
         *   <li>Parent directory references (..)</li>
         *   <li>Both file and directory targets</li>
         * </ul>
         *
         * @param relative path to resolve relative to this source
         * @return the resolved source, or null if resolution not possible
         * @throws NullPointerException if relative is null
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. docs/es/docs/advanced/events.md

    Incluyendo cómo manejar el estado de lifespan que puede ser usado en otras áreas de tu código.
    
    ///
    
    ## Sub Aplicaciones
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java

                assertEquals(0x1, buffer[offset + 12]);
                // Note: Padding byte at offset + 13 is not guaranteed to be 0 after encode
    
                // Verify areas before offset are untouched
                for (int i = 0; i < offset; i++) {
                    assertEquals((byte) 0xFF, buffer[i], "Buffer corrupted before offset at position " + i);
                }
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. .bazelrc

    build --config=v2
    
    # Precompiling results in some action conflicts. Disable it for now until
    # the problematic targets are fixed.
    build --@rules_python//python/config_settings:precompile=force_disabled
    
    # TF now has `cc_shared_library` targets, so it needs the experimental flag
    # TODO(rostam): Remove when `cc_shared_library` is enabled by default
    common --experimental_cc_shared_library
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 22 21:03:34 UTC 2025
    - 56K bytes
    - Viewed (0)
  9. cmd/object-api-interface.go

    	o.DeleteReplication = ReplicationState{
    		ReplicateDecisionStr: dsc.String(),
    	}
    	switch o.VersionID {
    	case "":
    		o.DeleteReplication.ReplicationStatusInternal = dsc.PendingStatus()
    		o.DeleteReplication.Targets = replicationStatusesMap(o.DeleteReplication.ReplicationStatusInternal)
    	default:
    		o.DeleteReplication.VersionPurgeStatusInternal = dsc.PendingStatus()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        /** Configuration ID */
        public String id;
    
        /** Configuration name */
        public String name;
    
        /** File system paths to crawl */
        public String paths;
    
        /** Number of threads for crawling */
        public String numOfThread;
    
        /** Interval time between crawling operations */
        public String intervalTime;
    
        /** Boost value for search ranking */
        public String boost;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top