Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 569 for biases (0.6 sec)

  1. guava/src/com/google/common/base/SmallCharMatcher.java

     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.base.CharMatcher.NamedFastMatcher;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen.cc

        const auto* api_def = api_def_map.GetApiDef(graph_op_def.name());
    
        std::vector<string> aliases;
        if (api_def->visibility() == ApiDef::SKIP) continue;
        // First endpoint is canonical, the rest are aliases.
        for (int endpoint_i = 1; endpoint_i < api_def->endpoint_size();
             ++endpoint_i) {
          aliases.push_back(api_def->endpoint(endpoint_i).name());
        }
        if (api_def->visibility() == ApiDef::HIDDEN) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    // Gets the function aliases from the SavedModel.
    absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    GetFunctionAliases(absl::string_view saved_model_path,
                       const std::unordered_set<std::string>& tags);
    
    // Updates the function aliases. `module_op` may have different
    // function names from the original model, so it re-associates the aliases
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/main/config/es/fess_user_group.json

    {
      "fess_user.group" : {
        "aliases" : { },
        "mappings" : {
          "group" : {
            "properties" : {
              "gidNumber" : {
                "type" : "long"
              },
              "name" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021058796",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 587 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/wsstream/legacy.go

    // Please use the apimachinery version of the package at:
    //
    //	k8s.io/apimachinery/pkg/util/httpstream/wsstream
    package wsstream
    
    import apimachinerywsstream "k8s.io/apimachinery/pkg/util/httpstream/wsstream"
    
    // Aliases for all exported symbols previously in "conn.go"
    const (
    	ChannelWebSocketProtocol       = apimachinerywsstream.ChannelWebSocketProtocol
    	Base64ChannelWebSocketProtocol = apimachinerywsstream.Base64ChannelWebSocketProtocol
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    // creation of new phases by simply instantiating a variable of this type.
    type Phase struct {
    	// name of the phase.
    	// Phase name should be unique among peer phases (phases belonging to
    	// the same workflow or phases belonging to the same parent phase).
    	Name string
    
    	// Aliases returns the aliases for the phase.
    	Aliases []string
    
    	// Short description of the phase.
    	Short string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/internal/src/xpos.go

    // adding pos to t if necessary.
    func (t *PosTable) XPos(pos Pos) XPos {
    	return XPos{t.baseIndex(pos.base), pos.lico}
    }
    
    func (t *PosTable) baseIndex(base *PosBase) int32 {
    	if base == nil {
    		return 0
    	}
    
    	if i, ok := t.indexMap[base]; ok {
    		return int32(i)
    	}
    
    	if base.fileIndex >= 0 {
    		panic("PosBase already registered with a PosTable")
    	}
    
    	if t.indexMap == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/net/testdata/ipv4-hosts

    # See https://tools.ietf.org/html/rfc1123.
    
    # internet address and host name
    127.0.0.1	localhost	# inline comment separated by tab
    127.0.0.2	localhost   # inline comment separated by space
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 20:23:22 UTC 2021
    - 274 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    )
    
    type testcase struct {
    	name  string
    	data  []byte
    	error string
    
    	benchmark bool
    }
    
    func testcases() []testcase {
    	return []testcase{
    		{
    			name:  "arrays of string aliases",
    			error: "excessive aliasing",
    			data: []byte(`
    apiVersion: v1
    data:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  10. test/fixedbugs/bug510.go

    // rundir
    
    // Copyright 2020 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 confused type descriptors for aliases.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 07 17:29:52 UTC 2020
    - 236 bytes
    - Viewed (0)
Back to top