Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for preprocessor (0.28 sec)

  1. src/cmd/asm/internal/lex/input.go

    				return tok
    			}
    		}
    	}
    	in.Error("recursive macro invocation")
    	return 0
    }
    
    func (in *Input) Text() string {
    	return in.text
    }
    
    // hash processes a # preprocessor directive. It reports whether it completes.
    func (in *Input) hash() bool {
    	// We have a '#'; it must be followed by a known word (define, include, etc.).
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/generate-clients.md

        ```
    
    With that, the operation IDs would be renamed from things like `items-get_items` to just `get_items`, that way the client generator can generate simpler method names.
    
    ### Generate a TypeScript Client with the Preprocessed OpenAPI
    
    Now as the end result is in a file `openapi.json`, you would modify the `package.json` to use that local file, for example:
    
    ```JSON  hl_lines="7"
    {
      "name": "frontend-app",
      "version": "1.0.0",
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Range.java

       * elements "between them." For example, {@code [3, 5]} is not considered connected to {@code [6,
       * 10]}. In these cases, it may be desirable for both input ranges to be preprocessed with {@link
       * #canonical(DiscreteDomain)} before testing for connectedness.
       */
      public boolean isConnected(Range<C> other) {
        return lowerBound.compareTo(other.upperBound) <= 0
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
Back to top