Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for destroy (0.63 sec)

  1. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_KSEM_CLOSE = 400 #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_CLOSE ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_DESTROY = 408 #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_DESTROY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_GETVALUE = 407 #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_GETVALUE ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                if (logger.isDebugEnabled()) {
                    logger.debug("container was destroyed.");
                }
                return;
            } catch (final Exception e) {
                if (!ComponentUtil.available()) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("container was destroyed.");
                    }
                    return;
                }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml

      </issueManagement>
      <ciManagement>
        <system>child-ci</system>
        <url>https://child.url/ci</url>
      </ciManagement>
      <distributionManagement>
        <repository>
          <id>child-distros</id>
          <url>ssh://child.url/distros</url>
        </repository>
        <snapshotRepository>
          <id>child-snaps</id>
          <url>ssh://child.url/snaps</url>
        </snapshotRepository>
        <site>
          <id>child-site</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    		t.Fatalf("Unable to create file, %s", err)
    	}
    
    	testCases := []struct {
    		srcVol      string
    		destVol     string
    		srcPath     string
    		destPath    string
    		expectedErr error
    	}{
    		// TestXLStorage case - 1.
    		{
    			srcVol:      "src-vol",
    			destVol:     "dest-vol",
    			srcPath:     "file1",
    			destPath:    "file-one",
    			expectedErr: nil,
    		},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_SEMOP = 256
    pkg syscall (darwin-386), const SYS_SEMSYS = 251
    pkg syscall (darwin-386), const SYS_SEM_CLOSE = 269
    pkg syscall (darwin-386), const SYS_SEM_DESTROY = 276
    pkg syscall (darwin-386), const SYS_SEM_GETVALUE = 274
    pkg syscall (darwin-386), const SYS_SEM_INIT = 275
    pkg syscall (darwin-386), const SYS_SEM_OPEN = 268
    pkg syscall (darwin-386), const SYS_SEM_POST = 273
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml

            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <distributionManagement>
        <repository>
          <id>parent-distros</id>
          <name>parent-distros</name>
          <url>ssh://parent.url/distros</url>
          <uniqueVersion>false</uniqueVersion>
          <layout>legacy</layout>
        </repository>
        <snapshotRepository>
          <id>parent-snaps</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/schema-extra-example.md

    d#parameter-object" class="external-link" target="_blank">definição do OpenAPI, dentro do `Parameter Object` (na especificação)</a>.
    
    E para `Body()`, `File()`, e `Form()`, o `example` e `examples` são de maneira equivalente adicionados para a <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#mediaTypeObject" class="external-link" target="_blank">definição do OpenAPI, dentro do `Request Body Object`, no campo `content`, no `Media Type Object` (na especificação)</a>....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  8. docs/pt/docs/advanced/templates.md

    * Use o `template` que você criou para renderizar e retornar uma `TemplateResponse`, passe o nome do template, o request object, e um "context" dict com pares chave-valor a serem usados dentro do template do Jinja2.
    
    ```Python hl_lines="4  11  15-18"
    {!../../../docs_src/templates/tutorial001.py!}
    ```
    
    !!! note
        Antes do FastAPI 0.108.0, Starlette 0.29.0, `name` era o primeiro parâmetro.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 28 04:05:17 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

    #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_PLUGINS_GCS_CLEANUP_H_
    
    #include <type_traits>
    #include <utility>
    
    namespace tf_gcs_filesystem {
    
    // A move-only RAII object that calls a stored cleanup functor when
    // destroyed. Cleanup<F> is the return type of gtl::MakeCleanup(F).
    template <typename F>
    class Cleanup {
     public:
      Cleanup() : released_(true), f_() {}
    
      template <typename G>
      explicit Cleanup(G&& f)          // NOLINT
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 09 11:16:00 GMT 2020
    - 3.4K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (darwin-386), const SYS_SEMOP ideal-int
    pkg syscall (darwin-386), const SYS_SEMSYS ideal-int
    pkg syscall (darwin-386), const SYS_SEM_CLOSE ideal-int
    pkg syscall (darwin-386), const SYS_SEM_DESTROY ideal-int
    pkg syscall (darwin-386), const SYS_SEM_GETVALUE ideal-int
    pkg syscall (darwin-386), const SYS_SEM_INIT ideal-int
    pkg syscall (darwin-386), const SYS_SEM_OPEN ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top