Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,363 for be (0.02 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt

     *
     * Since connections may be reused, the proxy selection, DNS, and connect events may not be present
     * for a call. In future releases of OkHttp these events may also occur concurrently to permit
     * multiple routes to be attempted simultaneously.
     *
     * Events and sequences of events may be repeated for retries and follow-ups.
     *
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 14:58
    - 17.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // will be written is mounted into the container's filesystem.
      // Message written is intended to be brief final status, such as an assertion failure message.
      // Will be truncated by the node if greater than 4096 bytes. The total message length across
      // all containers will be limited to 12kb.
      // Defaults to /dev/termination-log.
      // Cannot be updated.
      // +optional
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 255.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // allowed, and need not be included in the allowedCapabilities list.
      // +optional
      repeated string defaultAddCapabilities = 2;
    
      // requiredDropCapabilities are the capabilities that will be dropped from the container.  These
      // are required to be dropped and cannot be added.
      // +optional
      repeated string requiredDropCapabilities = 3;
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 19.6K bytes
    - Viewed (0)
  4. fastapi/routing.py

                # e.g. UserInDB (containing hashed_password) could be a subclass of User
                # that doesn't have the hashed_password. But because it's a subclass, it
                # would pass the validation and be returned as is.
                # By being a new field, no inheritance will be passed as is. A new model
                # will always be created.
                # TODO: remove when deprecating Pydantic v1
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-03-06 12:18
    - 172.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
      // Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 22.6K bytes
    - Viewed (0)
  6. fastapi/applications.py

                Doc(
                    """
                    The type to use for the response.
    
                    It could be any valid Pydantic *field* type. So, it doesn't have to
                    be a Pydantic model, it could be other things, like a `list`, `dict`,
                    etc.
    
                    It will be used for:
    
                    * Documentation: the generated OpenAPI (and the UI at `/docs`) will
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-08-17 04:52
    - 172.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1/generated.proto

      // without any of its container crashing, for it to be considered available.
      // Defaults to 0 (pod will be considered available as soon as it is ready)
      // +optional
      optional int32 minReadySeconds = 4;
    
      // Selector is a label query over pods that should match the replica count.
      // Label keys and values that must match in order to be controlled by this replica set.
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 34.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ru.properties

    constraints.Future.message      = {item} must be in the future.
    constraints.Max.message         = {item} must be less than or equal to {value}.
    constraints.Min.message         = {item} must be greater than or equal to {value}.
    constraints.NotNull.message     = {item} may not be null.
    constraints.Null.message        = {item} must be null.
    constraints.Past.message        = {item} must be in the past.
    Registered: 2025-05-26 08:04
    - Last Modified: 2022-05-20 12:12
    - 10.2K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

            "not used parameters should not be included"
        )
        assert '"syntaxHighlight": {"theme": "obsidian"}' in response.text, (
            "parameters with middle dots should be included in a JSON compatible way"
        )
        assert '"dom_id": "#swagger-ui"' in response.text, (
            "default configs should be preserved"
        )
        assert "presets: [" in response.text, "default configs should be preserved"
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-03-06 12:18
    - 1.5K bytes
    - Viewed (0)
  10. cmd/object_api_suite_test.go

    			t.Fatalf("%s: <ERROR> %s", instanceType, err)
    		}
    		if len(result.Objects) != i+1 {
    			t.Errorf("%s: Expected length of objects to be %d, instead found to be %d", instanceType, len(result.Objects), i+1)
    		}
    		if result.IsTruncated {
    			t.Errorf("%s: Expected IsTruncated to be `false`, but instead found it to be `%v`", instanceType, result.IsTruncated)
    		}
    	}
    
    	// check after paging occurs pages work.
    	for i := 6; i <= 10; i++ {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 33.3K bytes
    - Viewed (0)
Back to top