Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for details (0.21 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

        }
      }
    
      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * <p>See {@link #checkArgument(boolean, String, Object...)} for details.
       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(boolean expression, String errorMessageTemplate, char p1) {
        if (!expression) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Preconditions.java

        }
      }
    
      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * <p>See {@link #checkArgument(boolean, String, Object...)} for details.
       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(boolean expression, String errorMessageTemplate, char p1) {
        if (!expression) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                              "allow_connect": true
                            },
                            "server_name": "istio-envoy",
                            "forward_client_cert_details": "APPEND_FORWARD",
                            "set_current_client_cert_details": {
                              "subject": true,
                              "dns": true,
                              "uri": true
                            },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump.json

                            },
                            "server_name": "istio-envoy",
                            "use_remote_address": false,
                            "forward_client_cert_details": "APPEND_FORWARD",
                            "set_current_client_cert_details": {
                              "subject": true,
                              "dns": true,
                              "uri": true
                            },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string reason = 4;
    
      // Extended data associated with the reason.  Each reason may define its
      // own extended details. This field is optional and the data returned
      // is not guaranteed to conform to any schema except that defined by
      // the reason type.
      // +optional
      optional StatusDetails details = 5;
    
      // Suggested HTTP return code for this status, 0 if not set.
      // +optional
      optional int32 code = 6;
    }
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                                                    },
                                                    "istio": {
                                                        "workload": "details-v1;default;details;v1;Kubernetes"
                                                    }
                                                }
                                            },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 66K bytes
    - Viewed (0)
  7. docs/ru/docs/deployment/docker.md

    !!! tip "Подсказка"
        Торопитесь или уже знакомы с этой технологией? Перепрыгните на раздел [Создать Docker-образ для FastAPI 👇](#docker-fastapi)
    
    <details>
    <summary>Развернуть Dockerfile 👀</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

     * <a href="../../../resolver.html">Setting Name Resolution Properties</a>
     * for details.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>smb://192.168.1.15/ADMIN$/</code></td>
     * <td>
     * The server name may also be an IP address. See <a
     * href="../../../resolver.html">Setting Name Resolution Properties</a>
     * for details.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Synchronized.java

          this.delegate = checkNotNull(delegate);
          this.mutex = (mutex == null) ? this : mutex;
        }
    
        Object delegate() {
          return delegate;
        }
    
        // No equals and hashCode; see ForwardingObject for details.
    
        @Override
        public String toString() {
          synchronized (mutex) {
            return delegate.toString();
          }
        }
    
        // Serialization invokes writeObject only when it's private.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    //      `TF_Buffer` that may be updated to contain the serialized representation
    //      of a `RunMetadata` protocol buffer.
    //
    // The caller retains ownership of `input_values` (which can be deleted using
    // TF_DeleteTensor). The caller also retains ownership of `run_options` and/or
    // `run_metadata` (when not NULL) and should manually call TF_DeleteBuffer on
    // them.
    //
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top