Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 246 for Aliases (0.19 sec)

  1. src/main/config/es/fess_log_favorite_log.json

    {
      "fess_log.favorite_log" : {
        "aliases" : { },
        "mappings" : {
          "favorite_log" : {
            "properties" : {
              "createdAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "docId" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "url" : {
                "type" : "keyword"
              },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Nov 05 07:28:42 UTC 2017
    - 855 bytes
    - Viewed (0)
  2. src/main/config/es/fess_log_user_info.json

    {
      "fess_log.user_info" : {
        "aliases" : { },
        "mappings" : {
          "user_info" : {
            "properties" : {
              "createdAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "updatedAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              }
            }
          }
        },
        "settings" : {
          "index" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Nov 05 07:28:42 UTC 2017
    - 689 bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/bootstrap.go

    	"k8s.io/kubernetes/pkg/controller/bootstrap"
    )
    
    func newBootstrapSignerControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:                names.BootstrapSignerController,
    		aliases:             []string{"bootstrapsigner"},
    		initFunc:            startBootstrapSignerController,
    		isDisabledByDefault: true,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_bad_word.json

    {
      "fess_config.bad_word" : {
        "aliases" : { },
        "mappings" : {
          "bad_word" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "suggestWord" : {
                "type" : "keyword"
              },
              "targetLabel" : {
                "type" : "keyword"
              },
              "targetRole" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 961 bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_request_header.json

    {
      "fess_config.request_header" : {
        "aliases" : { },
        "mappings" : {
          "request_header" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "name" : {
                "type" : "keyword"
              },
              "updatedBy" : {
                "type" : "keyword"
              },
              "updatedTime" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 967 bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_crawling_info_param.json

    {
      "fess_config.crawling_info_param" : {
        "aliases" : { },
        "mappings" : {
          "crawling_info_param" : {
            "properties" : {
              "crawlingInfoId" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "key" : {
                "type" : "keyword"
              },
              "value" : {
                "type" : "keyword"
              }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 775 bytes
    - Viewed (0)
  7. test/fixedbugs/bug511.go

    // compiledir
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo mishandled type aliases as receiver types.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 25 15:24:25 UTC 2021
    - 244 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

            quant::stablehlo::GetFunctionAliases(input_path, tag_set));
        quant::stablehlo::UpdateFunctionAliases(function_aliases, *module_op);
        absl::c_for_each(function_aliases, [&](const auto& aliases) {
          return aliased_function_names.insert(aliases.first);
        });
      }
    
      std::optional<tensorflow::Session*> session;
      if (saved_model_bundle) {
        session = saved_model_bundle->GetSession();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/internal/genflags/vetflag.go

    package genflags
    
    import (
    	"bytes"
    	"cmd/go/internal/base"
    	"encoding/json"
    	"fmt"
    	"os/exec"
    	"regexp"
    	"sort"
    )
    
    // VetAnalyzers computes analyzers and their aliases supported by vet.
    func VetAnalyzers() ([]string, error) {
    	// get supported vet flag information
    	tool := base.Tool("vet")
    	vetcmd := exec.Command(tool, "-flags")
    	out := new(bytes.Buffer)
    	vetcmd.Stdout = out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/go/types/cl-577715.md

    <!-- CL 577715, CL 579076 -->
    By default, go/types now produces [Alias] type nodes for type aliases.
    This behavior can be controlled by the `GODEBUG` `gotypesalias` flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 21:30:00 UTC 2024
    - 230 bytes
    - Viewed (0)
Back to top