Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 256 for decreasing (0.22 sec)

  1. test/chan/sieve2.go

    }
    
    // Return a chan int of primes.
    func Sieve() chan int {
    	// The output values.
    	out := make(chan int, 10)
    	out <- 2
    	out <- 3
    
    	// The channel of all composites to be eliminated in increasing order.
    	composites := make(chan int, 50)
    
    	// The feedback loop.
    	primes := make(chan int, 10)
    	primes <- 3
    
    	// Merge channels of multiples of 'primes' into 'composites'.
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  2. samples/open-telemetry/tracing/README.md

      - name: otel-tracing
      randomSamplingPercentage: 0
    ```
    
    As you see, the `randomSamplingPercentage` is 0, which means the tracing is still not enabled because of `0` sampling percentage. The tracing can be opt-on by increasing the `randomSamplingPercentage` value to `1-100`. The `Telemetry` resource can also be manipulated in workload/namespace/global levels, you can check [here](https://istio.io/latest/docs/reference/config/telemetry/) for more config examples.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

    // getMutatingWebhookConfigurations returns the webhook accessors for a given list of
    // mutating webhook configurations.
    //
    // This function will, first, try to load the webhook accessors from the cache and avoid
    // recreating them, which can be expessive (requiring CEL expression recompilation).
    func (v *validatingWebhookConfigurationManager) getValidatingWebhookConfigurations(configurations []*v1.ValidatingWebhookConfiguration) []webhook.WebhookAccessor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

    #include "xla/service/hlo.pb.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/public/session.h"
    
    namespace tensorflow {
    namespace {
    
    // Creates a float tensor of linearly increasing values, starting from offset.
    Tensor CreateInputTensor(const TensorShape& shape, float offset) {
      Tensor tensor(DT_FLOAT, shape);
      for (int64 i = 0; i < tensor.flat<float>().size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pilot/pkg/features/tuning.go

    	ConvertSidecarScopeConcurrency = env.Register(
    		"PILOT_CONVERT_SIDECAR_SCOPE_CONCURRENCY",
    		1,
    		"Used to adjust the concurrency of SidecarScope conversions. "+
    			"When istiod is deployed on a multi-core CPU server, increasing this value will help to use the CPU to "+
    			"accelerate configuration push, but it also means that istiod will consume more CPU resources.",
    	).Get()
    
    	MutexProfileFraction = env.Register("MUTEX_PROFILE_FRACTION", 1000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/types2/typeparam.go

    import "sync/atomic"
    
    // Note: This is a uint32 rather than a uint64 because the
    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    // checkCache compares the passed quota against the value in the look-aside cache and returns the newer
    // if the cache is out of date, it deletes the stale entry.  This only works because of etcd resourceVersions
    // being monotonically increasing integers
    func (e *quotaAccessor) checkCache(quota *corev1.ResourceQuota) *corev1.ResourceQuota {
    	key := quota.Namespace + "/" + quota.Name
    	uncastCachedQuota, ok := e.updatedQuotas.Get(key)
    	if !ok {
    		return quota
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

      // constant" threshold, if there is one.
      const int kSmallTensorThreshold = 16;
      return total_elements < kSmallTensorThreshold;
    }
    
    // We only clone small constants since we want to avoid increasing memory
    // pressure on GPUs.
    absl::StatusOr<bool> IsSmallConstant(Node* n) {
      if (!n->IsConstant()) {
        return false;
      }
    
      return IsConstantSmall(n);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/internal/objfile/objfile.go

    	Name   string  // symbol name
    	Addr   uint64  // virtual address of symbol
    	Size   int64   // size in bytes
    	Code   rune    // nm code (T for text, D for data, and so on)
    	Type   string  // XXX?
    	Relocs []Reloc // in increasing Addr order
    }
    
    type Reloc struct {
    	Addr     uint64 // Address of first byte that reloc applies to.
    	Size     uint64 // Number of bytes
    	Stringer RelocStringer
    }
    
    type RelocStringer interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

        // Name is unique, increment count and return string name backed by
        // `name_to_count_`.
        ++prefix_it.first->second;
        return prefix_it.first->first();
      }
    
      // Add increasing number (count) to end of prefix until it is determined
      // to be unique.
      auto& val = prefix_it.first->second;
      auto prefix_name = hash_value == 0 ? prefix.str() + GetSuffixSeparator().str()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top