Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for Uncommon (0.21 sec)

  1. cmd/server_test.go

    	"sync"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio-go/v7/pkg/set"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // API suite container common to both ErasureSD and Erasure.
    type TestSuiteCommon struct {
    	serverType string
    	testServer TestServer
    	endPoint   string
    	accessKey  string
    	secretKey  string
    	signer     signerType
    	secure     bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return fmt.Sprintf("%*s%sBuiltinType: %s", indent, "", field, bt.Name)
    }
    
    func (bt *BuiltinType) prec() precedence {
    	return precPrimary
    }
    
    // printBase is common print code for types that are printed with a
    // simple suffix.
    func printBase(ps *printState, qual, base AST) {
    	ps.inner = append(ps.inner, qual)
    	ps.print(base)
    	if len(ps.inner) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      //   %pack   = tf.Pack(dim0, ...) { axis = 0 }   // [? x ...]
      //
      // Where `...` are some statically known dimensions. In this case %pack can be
      // replace with a %shape. This is a common pattern in models with a dynamic
      // batch size.
    
      // Test Rank 2
      // CHECK: %[[SHAPE0:.*]] = "tf.Shape"
      %3 = "tf.Shape"(%arg0) : (tensor<?x1xf32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      addInterfaces<TensorFlowLiteInlinerInterface,
                    TensorFlowLiteDialectFoldInterface>();
      addTypes<ControlType>();
    }
    
    //===----------------------------------------------------------------------===//
    // Common support logic
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // Returns true if the dimensions in `a` is a suffix of the ones in `b`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * NPD: Add e2e test for NPD v0.2. ([#35740](https://github.com/kubernetes/kubernetes/pull/35740), [@Random-L...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	klet.runner = runtime
    
    	runtimeCache, err := kubecontainer.NewRuntimeCache(klet.containerRuntime, runtimeCacheRefreshPeriod)
    	if err != nil {
    		return nil, err
    	}
    	klet.runtimeCache = runtimeCache
    
    	// common provider to get host file system usage associated with a pod managed by kubelet
    	hostStatsProvider := stats.NewHostStatsProvider(kubecontainer.RealOS{}, func(podUID types.UID) string {
    		return getEtcHostsPath(klet.getPodDir(podUID))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	}
    	return "no Go files in " + e.Package.Dir
    }
    
    // setLoadPackageDataError presents an error found when loading package data
    // as a *PackageError. It has special cases for some common errors to improve
    // messages shown to users and reduce redundancy.
    //
    // setLoadPackageDataError returns true if it's safe to load information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    import os
    from typing import Mapping, Optional, Sequence, Tuple, Union
    
    from absl.testing import parameterized
    import numpy as np
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.quantization.common.python import testing
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as stablehlo_quant_config_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. src/encoding/json/testdata/code.json.gz

    558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":1297743092},{"name":"stubs","kids":[{"name":"common.cc","kids":[],"cl_weight":0.028647215558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":1297743092},{"name":"hash.cc","kids":[],"cl_weight":0.028647215558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":1297743092},{"name":"common.h","kids":[],"cl_weight":0.028647215558761104,"touches":4,"min_t":1285863249,"max_t":1301748385,"mean_t":12977430...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	// That could potentially last until other goroutines become ready
    	// to run. That said, we need to find a way to hedge
    	//
    	// Calling wakep() here is the best bet, it will do nothing in the
    	// common case (no racing on `sched.npidle`), while it could wake one
    	// more P to execute G's, which might end up with >1 P's: the first one
    	// wakes another P and so forth until there is no more work, but this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top