Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 126 for require (0.26 sec)

  1. src/cmd/cgo/gcc.go

    // gccErrors runs gcc over the C program stdin and returns
    // the errors that gcc prints. That is, this function expects
    // gcc to fail.
    func (p *Package) gccErrors(stdin []byte, extraArgs ...string) string {
    	// TODO(rsc): require failure
    	args := p.gccCmd()
    
    	// Optimization options can confuse the error messages; remove them.
    	nargs := make([]string, 0, len(args)+len(extraArgs))
    	for _, arg := range args {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// properly handle the cases when an operation is not supported (i.e., return
    /// the corresponding `Status` value).
    ///
    /// REQUIRED OPERATIONS: All required operations are marked as such, including
    /// operations which are conditionally required. If the presence of an operation
    /// `foo` requires operation `bar` to be present, this is specified in `foo`. If
    /// the entire set of operations in a table is not provided, use `nullptr` for
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

            return this.transportContext;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Transport#acquire()
         */
        @Override
        public SmbTransportImpl acquire () {
            return (SmbTransportImpl) super.acquire();
        }
    
    
        /**
         * @return the server's encryption key
         */
        @Override
        public byte[] getServerEncryptionKey () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

        checkState(refreshNanos == UNSET_INT, "refreshAfterWrite requires a LoadingCache");
      }
    
      private void checkWeightWithWeigher() {
        if (weigher == null) {
          checkState(maximumWeight == UNSET_INT, "maximumWeight requires weigher");
        } else {
          if (strictParsing) {
            checkState(maximumWeight != UNSET_INT, "weigher requires maximumWeight");
          } else {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    	},
    	ErrMissingContentMD5: {
    		Code:           "MissingContentMD5",
    		Description:    "Missing required header for this request: Content-Md5.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSecurityHeader: {
    		Code:           "MissingSecurityHeader",
    		Description:    "Your request was missing a required header",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingRequestBodyError: {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  6. tests/test_application.py

                            },
                        },
                        "summary": "Get Query Param Required",
                        "operationId": "get_query_param_required_query_param_required_get",
                        "parameters": [
                            {
                                "required": True,
                                "schema": {"title": "Query"},
                                "name": "query",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 21:56:59 GMT 2024
    - 52.2K bytes
    - Viewed (0)
  7. tests/test_generate_unique_id_function.py

                                        "$ref": "#/components/schemas/Body_foo_post_root"
                                    }
                                }
                            },
                            "required": True,
                        },
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Jan 13 15:10:26 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                        type: array
                    type: object
                required:
                - addresses
                type: object
              status:
                description: IPAddressPoolStatus defines the observed state of IPAddressPool.
                type: object
            required:
            - spec
            type: object
        served: true
        storage: true
        subresources:
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

      - [Changes since v1.3.0-alpha.5](#changes-since-v130-alpha5)
        - [Action Required](#action-required-1)
        - [Other notable changes](#other-notable-changes-12)
    - [v1.3.0-alpha.5](#v130-alpha5)
      - [Downloads](#downloads-13)
      - [Changes since v1.3.0-alpha.4](#changes-since-v130-alpha4)
        - [Action Required](#action-required-2)
        - [Other notable changes](#other-notable-changes-13)
    - [v1.3.0-alpha.4](#v130-alpha4)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  10. fastapi/param_functions.py

        default: Annotated[
            Any,
            Doc(
                """
                Default value if the parameter field is not set.
    
                This doesn't affect `Path` parameters as the value is always required.
                The parameter is available only for compatibility.
                """
            ),
        ] = ...,
        *,
        default_factory: Annotated[
            Union[Callable[[], Any], None],
            Doc(
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
Back to top