Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for keyFor (0.12 sec)

  1. internal/s3select/sql/parser.go

    	Quoted   *QuotedIdentifier `parser:"| @QuotIdent"`
    }
    
    var (
    	sqlLexer = lexer.Must(lexer.Regexp(`(\s+)` +
    		`|(?P<Timeword>(?i)\b(?:YEAR|MONTH|DAY|HOUR|MINUTE|SECOND|TIMEZONE_HOUR|TIMEZONE_MINUTE)\b)` +
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                }
    
                @TaskAction
                void printIt() {
                    println("\$message \$number")
                }
            }
        """
    
        def "can define tasks using task keyword and identifier"() {
            buildFile << """
                task nothing
                task withAction { doLast {} }
                task emptyOptions()
                task task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/encoding/gob/decode.go

    // ignoreMap discards the data for a map value with no destination.
    func (dec *Decoder) ignoreMap(state *decoderState, keyOp, elemOp decOp) {
    	n := int(state.decodeUint())
    	keyInstr := &decInstr{keyOp, 0, nil, errors.New("no error")}
    	elemInstr := &decInstr{elemOp, 0, nil, errors.New("no error")}
    	for i := 0; i < n; i++ {
    		keyOp(keyInstr, state, noValue)
    		elemOp(elemInstr, state, noValue)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	_, certErr := os.Stat(certificatePath)
    	_, keyErr := os.Stat(privateKeyPath)
    
    	return !(os.IsNotExist(certErr) && os.IsNotExist(keyErr))
    }
    
    // CSROrKeyExist returns true if one of the CSR or key exists
    func CSROrKeyExist(csrDir, name string) bool {
    	csrPath := pathForCSR(csrDir, name)
    	keyPath := pathForKey(csrDir, name)
    
    	_, csrErr := os.Stat(csrPath)
    	_, keyErr := os.Stat(keyPath)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/encoding/gob/encode.go

    func (enc *Encoder) encodeMap(b *encBuffer, mv reflect.Value, keyOp, elemOp encOp, keyIndir, elemIndir int) {
    	state := enc.newEncoderState(b)
    	state.fieldnum = -1
    	state.sendZero = true
    	state.encodeUint(uint64(mv.Len()))
    	mi := mv.MapRange()
    	for mi.Next() {
    		encodeReflectValue(state, mi.Key(), keyOp, keyIndir)
    		encodeReflectValue(state, mi.Value(), elemOp, elemIndir)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      // and _XlaRecvAtHostOp and _XlaSendFromHostOp are used, update to a more
      // structured lowering.
      old_parallel_execute.walk(
          [&](TF::_XlaCompileMlirPlaceholderProgramKeyOp key_op) {
            key_op.replaceAllUsesWith(compile_op->getResult(1));
            key_op.erase();
          });
    
      // After rewrite, if there is a TPUCompilationResultOp from the same cluster,
      // replace it with the result of the compile op. The TPUCompilationResultOp is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. internal/s3select/unused-errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedKeyword(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedKeyword",
    		message:    "Did not find the expected keyword in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedTokenType(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedTokenType",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/build_read.go

    				for c != '\n' && r.err == nil && !r.eof {
    					c = r.readByteNoBuf()
    				}
    				startLine = true
    			}
    		}
    	}
    	return false
    }
    
    // readKeyword reads the given keyword from the input.
    // If the keyword is not present, readKeyword records a syntax error.
    func (r *importReader) readKeyword(kw string) {
    	r.peekByte(true)
    	for i := 0; i < len(kw); i++ {
    		if r.nextByte(false) != kw[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    	check.scope = check.scope.Parent()
    }
    
    func (check *Checker) suspendedCall(keyword string, call syntax.Expr) {
    	code := InvalidDefer
    	if keyword == "go" {
    		code = InvalidGo
    	}
    
    	if _, ok := call.(*syntax.CallExpr); !ok {
    		check.errorf(call, code, "expression in %s must be function call", keyword)
    		check.use(call)
    		return
    	}
    
    	var x operand
    	var msg string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_test.go

    var (
    	update       = flag.Bool("update", false, "update golden files on failure")
    	fast         = flag.Bool("fast", false, "impose a quick, possibly flaky timeout on recorded tests")
    	keyFile      = flag.String("keylog", "", "destination file for KeyLogWriter")
    	bogoMode     = flag.Bool("bogo-mode", false, "Enabled bogo shim mode, ignore everything else")
    	bogoFilter   = flag.String("bogo-filter", "", "BoGo test filter")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top