Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 569 for biases (0.2 sec)

  1. src/net/testdata/ipv6-hosts

    fe80:0000:0000:0000:0000:0000:0000:0001		localhost       # inline comment separated by space
    
    # internet address with zone identifier and host name
    fe80:0000:0000:0000:0000:0000:0000:0002%lo0	localhost
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 02 11:47:06 UTC 2015
    - 460 bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    	cliflag "k8s.io/component-base/cli/flag"
    	"k8s.io/component-base/cli/globalflag"
    	"k8s.io/component-base/configz"
    	"k8s.io/component-base/featuregate"
    	"k8s.io/component-base/logs"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	metricsfeatures "k8s.io/component-base/metrics/features"
    	controllersmetrics "k8s.io/component-base/metrics/prometheus/controllers"
    	"k8s.io/component-base/metrics/prometheus/slis"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_data_config.json

    {
      "fess_config.data_config" : {
        "aliases" : { },
        "mappings" : {
          "data_config" : {
            "properties" : {
              "available" : {
                "type" : "boolean"
              },
              "boost" : {
                "type" : "float"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "description" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/service.go

    	LabelSelectors map[string]string
    
    	// Aliases is the resolved set of aliases for this service. This is computed based on a global view of all Service's `AliasFor`
    	// fields.
    	// For example, if I had two Services with `externalName: foo`, "a" and "b", then the "foo" service would have Aliases=[a,b].
    	Aliases []NamespacedHostname
    
    	// For Kubernetes platform
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_scheduled_job.json

    {
      "fess_config.scheduled_job" : {
        "aliases" : { },
        "mappings" : {
          "scheduled_job" : {
            "properties" : {
              "available" : {
                "type" : "boolean"
              },
              "crawler" : {
                "type" : "boolean"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. src/syscall/types_windows_amd64.go

    	MaxSockets   uint16
    	MaxUdpDg     uint16
    	VendorInfo   *byte
    	Description  [WSADESCRIPTION_LEN + 1]byte
    	SystemStatus [WSASYS_STATUS_LEN + 1]byte
    }
    
    type Servent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   *byte
    	Port    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 17:09:08 UTC 2017
    - 477 bytes
    - Viewed (0)
  7. src/syscall/types_windows_arm64.go

    	MaxSockets   uint16
    	MaxUdpDg     uint16
    	VendorInfo   *byte
    	Description  [WSADESCRIPTION_LEN + 1]byte
    	SystemStatus [WSASYS_STATUS_LEN + 1]byte
    }
    
    type Servent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   *byte
    	Port    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:40:42 UTC 2021
    - 477 bytes
    - Viewed (0)
  8. tensorflow/cc/framework/cc_op_gen_util.h

      // interface_op_def: The OpDef used in the interface in the generated
      //   code, with possibly overridden names and defaults.
      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def,
             const std::vector<string>& aliases);
      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def);
      string GetOpAttrStruct() const;
      string GetConstructorDecl(StringPiece op_name_prefix,
                                bool include_attr) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows_arm64.go

    	MaxSockets   uint16
    	MaxUdpDg     uint16
    	VendorInfo   *byte
    	Description  [WSADESCRIPTION_LEN + 1]byte
    	SystemStatus [WSASYS_STATUS_LEN + 1]byte
    }
    
    type Servent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   *byte
    	Port    uint16
    }
    
    type JOBOBJECT_BASIC_LIMIT_INFORMATION struct {
    	PerProcessUserTimeLimit int64
    	PerJobUserTimeLimit     int64
    	LimitFlags              uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:40:30 UTC 2021
    - 817 bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/certificates.go

    )
    
    func newCertificateSigningRequestSigningControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.CertificateSigningRequestSigningController,
    		aliases:  []string{"csrsigning"},
    		initFunc: startCertificateSigningRequestSigningController,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top