Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,431 for Another (0.26 sec)

  1. cmd/xl-storage-format-utils_test.go

    			}
    			want = hashDeterministicString(m)
    			delete(m, "12312312")
    			m["another"] = ""
    
    			if got := hashDeterministicString(m); got == want {
    				t.Errorf("hashDeterministicString() = %v, does not want %v", got, want)
    			}
    
    			want = hashDeterministicString(m)
    			m["another"] = "hashDeterministicString"
    			if got := hashDeterministicString(m); got == want {
    Go
    - Registered: 2023-12-03 19:28
    - Last Modified: 2023-09-02 14:49
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DosError.java

            "The process cannot access the file because it is being used by another process.",
            "The process cannot access the file because it is being used by another process.",
            "The process cannot access the file because another process has locked a portion of the file.", "The disk is full.",
    Java
    - Registered: 2023-12-03 00:10
    - Last Modified: 2020-07-07 10:52
    - 4.8K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/additional-responses.md

        * In the key `content`, that has as value another JSON object (`dict`) that contains:
            * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
                * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
    Plain Text
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-06-30 18:25
    - 8.8K bytes
    - Viewed (0)
  4. common/config/.golangci-format.yml

      - goimports
      - gofumpt
      - gci
      fast: false
    
    linters-settings:
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
          - default # Contains all imports that could not be matched to another section type.
          - prefix(istio.io/) # Groups all imports with the specified Prefix.
      goimports:
        # put imports beginning with prefix after 3rd-party packages;
    Others
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-10-25 16:58
    - 2.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

     * possibly run in another thread.
     *
     * <p>{@code UncheckedExecutionException} is intended as an alternative to {@code
     * ExecutionException} when the exception thrown by a task is an unchecked exception. However, it
     * may also wrap a checked exception in some cases.
     *
     * <p>When wrapping an {@code Error} from another thread, prefer {@link ExecutionError}. When
    Java
    - Registered: 2023-12-01 12:43
    - Last Modified: 2023-05-30 20:12
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

            @Inject
            @Named("scoped")
            BeanItf myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        @Named
        static class MySingletonBean2 {
            @Inject
            @Named("scoped")
            MySessionScopedBean myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        interface BeanItf {
            Session getSession();
    
    Java
    - Registered: 2023-12-03 03:35
    - Last Modified: 2023-11-09 13:34
    - 3.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/DosError.java

            "A device attached to the system is not functioning.",
            "The process cannot access the file because it is being used by another process.",
            "The process cannot access the file because it is being used by another process.",
            "The process cannot access the file because another process has locked a portion of the file.",
            "The disk is full.",
            "A duplicate name exists on the network.",
    Java
    - Registered: 2023-12-03 00:10
    - Last Modified: 2019-03-22 21:10
    - 4.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                                    + "Detected that one of the modules of this multi-module project uses another module as "
                                    + "plugin extension which still needed to be built. This is not possible within the same "
                                    + "reactor build. Another project collection strategy will be executed as result.",
                            System.lineSeparator());
    Java
    - Registered: 2023-12-03 03:35
    - Last Modified: 2023-09-22 09:07
    - 9.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/bigger-applications.md

    * There's a subdirectory `app/routers/` with another file `__init__.py`, so it's a "Python subpackage": `app.routers`.
    * The file `app/routers/items.py` is inside a package, `app/routers/`, so, it's a submodule: `app.routers.items`.
    * The same with `app/routers/users.py`, it's another submodule: `app.routers.users`.
    * There's also a subdirectory `app/internal/` with another file `__init__.py`, so it's another "Python subpackage": `app.internal`.
    Plain Text
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-10-17 05:59
    - 18.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      const std::string some_path = GetURIForPath("a_dir/another_dir");
      status = env_->CreateDir(some_path);
      if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
    
      const std::string another_path = GetURIForPath("a_dir/yet_another_dir");
      status = env_->CreateDir(another_path);
      if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
    
    C++
    - Registered: 2023-11-28 12:39
    - Last Modified: 2022-05-27 20:25
    - 71K bytes
    - Viewed (0)
Back to top