Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 421 for keyWords (0.31 sec)

  1. JavadocStyleGuide.md

    ```java
    /**
     * This is a link to <a href="http://www.google.com">Google</a>. The name
     */
    ```
    
    ### 1.1.6 Code keywords, names, and variables
    
    Use `{@code ... }` style for keywords and names including:
    - Java keywords
    - package names
    - class names
    - method names
    - interface names
    - field names
    - argument names
    - code examples (see section 1.3 below)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/tokens.go

    	_Lparen    // (
    	_Lbrack    // [
    	_Lbrace    // {
    	_Rparen    // )
    	_Rbrack    // ]
    	_Rbrace    // }
    	_Comma     // ,
    	_Semi      // ;
    	_Colon     // :
    	_Dot       // .
    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    ```
    src
    └── main
        └── java
            └── module-info.java
    ```
    
    In the `module-info.java` file you define dependencies to other modules using keywords like `requires` or `requires transitive`.
    These correspond to the `implementation` and `api` dependencies defined in the Gradle build file.
    In addition, a module `exports` packages that should be visible to consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. common/config/sass-lint.yml

          size: 4
      leading-zero:
        - 2
        -
          include: false
      max-file-line-count: 0
      max-file-length: 0
      mixins-before-declarations: 2
      no-attribute-selectors: 0
      no-color-hex: 0
      no-color-keywords: 0
      no-color-literals: 0
      no-combinators: 0
      no-css-comments: 2
      no-debug: 2
      no-disallowed-properties: 2
      no-duplicate-properties: 2
      no-empty-rulesets: 2
      no-extends: 2
      no-ids: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. src/html/template/css.go

    		if isCSSNmchar(r) {
    			// Too long.
    			return false
    		}
    	}
    	// Many CSS keywords, such as "!important" can have characters encoded,
    	// but the URI production does not allow that according to
    	// https://www.w3.org/TR/css3-syntax/#TOK-URI
    	// This does not attempt to recognize encoded keywords. For example,
    	// given "\75\72\6c" and "url" this return false.
    	return string(bytes.ToLower(b[i:])) == kw
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. operator/pkg/helm/fs_renderer_test.go

    				dir:           "testdata/render",
    				files:         os.DirFS("."),
    			},
    			wantResult: `apiVersion: v1
    description: test
    name: addon
    version: 1.1.0
    appVersion: 1.1.0
    tillerVersion: ">=2.7.2"
    keywords:
      - istio-addon
    
    ---
    `,
    			wantErr: nil,
    		},
    		{
    			desc:        "bad-file-path",
    			inValues:    "",
    			inPath:      "foo/bar/Chart.yaml",
    			startRender: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 24 21:09:19 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

                String[] keywords = query.split(" ");
                assertTrue(doc.entrySet().stream()
                        .anyMatch(entry -> entry.getValue().toString().toLowerCase().contains(keywords[0].toLowerCase())), doc.toString());
                assertFalse(doc.entrySet().stream()
                        .anyMatch(entry -> entry.getValue().toString().toLowerCase().contains(keywords[2].toLowerCase())), doc.toString());
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_aix_ppc64.S

     * Calling into the gc tool chain, where all registers are caller save.
     * Called from standard ppc64 C ABI, where r2, r14-r31, f14-f31 are
     * callee-save, so they must be saved explicitly.
     * AIX has a special assembly syntax and keywords that can be mixed with
     * Linux assembly.
     */
      .toc
      .csect .text[PR]
      .globl crosscall_ppc64
      .globl .crosscall_ppc64
      .csect crosscall_ppc64[DS]
    crosscall_ppc64:
      .llong .crosscall_ppc64, TOC[tc0], 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    //   - '__' escapes to '__underscores__'
    //   - '.' escapes to '__dot__'
    //   - '-' escapes to '__dash__'
    //   - '/' escapes to '__slash__'
    //   - Identifiers that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are: "true", "false",
    //     "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", loop", "package",
    //     "namespace", "return".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/cc_op_gen_util.cc

              "volatile",
              "wchar_t",
              "while",
              "xor",
              "xor_eq",
    
              // The following are not C++ keywords, but names of local variables
              // and parameters used in the op constructor. Treating them as
              // keywords, so that other parameter names don't conflict with these.
              "builder",
              "node",
              "ret",
              "scope",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top