Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for keyFor (0.13 sec)

  1. src/main/resources/fess_label_ko.properties

    labels.searchlog_log_type_search_keyword=Keywords
    labels.searchlog_log_type_search_zerohit=Zero Hits
    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. src/cmd/go/internal/search/search.go

    // directory, such as a filesystem path or a single module.
    func (m *Match) IsLocal() bool {
    	return build.IsLocalImport(m.pattern) || filepath.IsAbs(m.pattern)
    }
    
    // IsMeta reports whether the pattern is a “meta-package” keyword that represents
    // multiple packages, such as "std", "cmd", or "all".
    func (m *Match) IsMeta() bool {
    	return IsMetaPackage(m.pattern)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      TF_ASSERT_OK_AND_ASSIGN(auto event, executor->CreateEvent());
      ASSERT_EQ(event->PollForStatus(), Event::Status::kComplete);
      event_status = SE_EVENT_ERROR;
      ASSERT_EQ(event->PollForStatus(), Event::Status::kError);
    }
    
    TEST_F(StreamExecutorTest, RecordAndWaitForEvent) {
      static bool record_called = false;
      static bool wait_called = false;
      se_.create_stream = [](const SP_Device* const device, SP_Stream* stream,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.cc

      }
      return entry->second;
    }
    
    bool IsCPPKeyword(StringPiece name) {
      static const absl::flat_hash_set<StringPiece, StringPieceHasher>*
          // Keywords obtained from http://en.cppreference.com/w/cpp/keyword
          kCPPReserved = new absl::flat_hash_set<StringPiece, StringPieceHasher>{
              "alignas",
              "alignof",
              "and",
              "and_eq",
              "asm",
              "atomic_cancel",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // - '__' escapes to '__underscores__'
      // - '.' escapes to '__dot__'
      // - '-' escapes to '__dash__'
      // - '/' escapes to '__slash__'
      // - Property names 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".
      // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    	// zero, respectively, if not known.
    	File string
    	Line int
    
    	// startLine is the line number of the beginning of the function in
    	// this frame. Specifically, it is the line number of the func keyword
    	// for Go functions. Note that //line directives can change the
    	// filename and/or line number arbitrarily within a function, meaning
    	// that the Line - startLine offset is not always meaningful.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    	for isLetter(s.ch) || isDecimal(s.ch) {
    		s.nextch()
    	}
    
    	// general case
    	if s.ch >= utf8.RuneSelf {
    		for s.atIdentChar(false) {
    			s.nextch()
    		}
    	}
    
    	// possibly a keyword
    	lit := s.segment()
    	if len(lit) >= 2 {
    		if tok := keywordMap[hash(lit)]; tok != 0 && tokStrFast(tok) == string(lit) {
    			s.nlsemi = contains(1<<_Break|1<<_Continue|1<<_Fallthrough|1<<_Return, tok)
    			s.tok = tok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    					// We don't have the right position for ONAME nodes (see #15459 and
    					// others). Using ncase.Pos for now as it will provide the correct
    					// line number (assuming the expression follows the "case" keyword
    					// on the same line). This matches the approach before 1.10.
    					pos = ncase.Pos()
    				}
    				base.ErrorfAt(pos, errors.InvalidSelectCase, "select case must be receive, send or assign recv")
    
    			case ir.OAS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    	  constants. Note that, as in Go, whether a large integer constant
    	  overflows when assigned or passed to a function can depend on whether
    	  the host machine's ints are 32 or 64 bits.
    	- The keyword nil, representing an untyped Go nil.
    	- The character '.' (period):
    		.
    	  The result is the value of dot.
    	- A variable name, which is a (possibly empty) alphanumeric string
    	  preceded by a dollar sign, such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // - '__' escapes to '__underscores__'
      // - '.' escapes to '__dot__'
      // - '-' escapes to '__dash__'
      // - '/' escapes to '__slash__'
      // - Property names 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".
      // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top