Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for LITERAL (0.11 sec)

  1. src/main/java/org/codelibs/core/io/CopyUtil.java

         *
         * @param in
         *            入力ファイル。{@literal null}であってはいけません
         * @param inputEncoding
         *            入力ファイルのエンコーディング。{@literal null}や空文字列であってはいけません
         * @param out
         *            出力ファイル。{@literal null}であってはいけません
         * @param outputEncoding
         *            出力ファイルのエンコーディング。{@literal null}や空文字列であってはいけません
         * @return コピーした文字数
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                  "tag": "istio.canonical_revision",
                                  "literal": {
                                    "value": "latest"
                                  }
                                },
                                {
                                  "tag": "istio.canonical_service",
                                  "literal": {
                                    "value": "httpbin-istio-waypoint"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    The check performed by f may fail in which case x.mode == invalid, and
    related error messages will have been issued by f.
    
    If a hint argument is present, it is the composite literal element type
    of an outer composite literal; it is used to type-check composite literal
    elements that have no explicit type specification in the source
    (e.g.: []T{{...}, {...}}, the hint is the type T in this case).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    					check.funcBody(decl, "<function literal>", sig, e.Body, iota)
    				}).describef(e, "func literal")
    			}
    			x.mode = value
    			x.typ = sig
    		} else {
    			check.errorf(e, InvalidSyntaxTree, "invalid function literal %v", e)
    			goto Error
    		}
    
    	case *ast.CompositeLit:
    		var typ, base Type
    
    		switch {
    		case e.Type != nil:
    			// composite literal type present - use it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    		re1.Rune[0] = r
    		re1.Flags = flags
    		return true
    	}
    
    	p.stack = p.stack[:n-1]
    	p.reuse(re1)
    	return false // did not push r
    }
    
    // literal pushes a literal regexp for the rune r on the stack.
    func (p *parser) literal(r rune) {
    	re := p.newRegexp(OpLiteral)
    	re.Flags = p.flags
    	if p.flags&FoldCase != 0 {
    		r = minFoldRune(r)
    	}
    	re.Rune0[0] = r
    	re.Rune = re.Rune0[:1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * {@link Collection}が{@literal null}でも要素が無いわけでもない場合は{@literal true}を返します。
         *
         * @param collection
         *            コレクション
         * @return コレクションが{@literal null}でも要素が無いわけでもない場合は{@literal true}
         */
        public static boolean isNotEmpty(final Collection<?> collection) {
            return !isEmpty(collection);
        }
    
        /**
         * {@link Map}が{@literal null}または要素が無い場合は{@literal true}を返します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            final Object literal;
    
            LiteralValue(Object literal) {
                this.literal = literal;
            }
    
            @Override
            public boolean isBooleanType() {
                return literal instanceof Boolean;
            }
    
            @Override
            public String with(Syntax syntax) {
                return literal.toString();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                  "tag": "istio.canonical_revision",
                                  "literal": {
                                    "value": "latest"
                                  }
                                },
                                {
                                  "tag": "istio.canonical_service",
                                  "literal": {
                                    "value": "namespace-istio-waypoint"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/testdata/configdump.json

                                  "tag": "istio.canonical_revision",
                                  "literal": {
                                    "value": "latest"
                                  }
                                },
                                {
                                  "tag": "istio.canonical_service",
                                  "literal": {
                                    "value": "namespace-istio-waypoint"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    			// determine if '{' belongs to a composite literal or a block statement
    			complit_ok := false
    			switch t.(type) {
    			case *Name, *SelectorExpr:
    				if p.xnest >= 0 {
    					// x is possibly a composite literal type
    					complit_ok = true
    				}
    			case *IndexExpr:
    				if p.xnest >= 0 && !isValue(t) {
    					// x is possibly a composite literal type
    					complit_ok = true
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top