Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 529 for converging (0.17 sec)

  1. pkg/test/framework/components/echo/calloptions.go

    	// when we attempt to reach all clusters), converging will result in sending at least
    	// `converge * count` requests. When running multiple requests in parallel, this can contribute
    	// to resource (e.g. port) exhaustion in the echo servers. To avoid that problem, we disable
    	// converging by default, so long as the count is greater than the default converge value.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/migrator.go

    		if err != nil {
    			return err
    		}
    	} else {
    		return fmt.Errorf("existing data directory '%s' is missing version.txt file, unable to migrate", m.dataDirectory.path)
    	}
    
    	for {
    		klog.Infof("Converging current version '%s' to target version '%s'", current, target)
    		currentNextMinorVersion := &EtcdVersion{Version: semver.Version{Major: current.version.Major, Minor: current.version.Minor + 1}}
    		switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    func Forever(f func(), period time.Duration) {
    	Until(f, period, NeverStop)
    }
    
    // Jitter returns a time.Duration between duration and duration + maxFactor *
    // duration.
    //
    // This allows clients to avoid converging on periodic behavior. If maxFactor
    // is 0.0, a suggested default value will be chosen.
    func Jitter(duration time.Duration, maxFactor float64) time.Duration {
    	if maxFactor <= 0.0 {
    		maxFactor = 1.0
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/runtime/runtime_test.go

    		n2, ok := GoroutineProfile(make([]StackRecord, n1))
    		if n2 == n1 && ok {
    			break
    		}
    		t.Logf("GoroutineProfile(%d) = %d, %v, want %d, true", n1, n2, ok, n1)
    		if i >= 10 {
    			t.Fatalf("GoroutineProfile not converging")
    		}
    	}
    }
    
    func BenchmarkGoroutineProfile(b *testing.B) {
    	run := func(fn func() bool) func(b *testing.B) {
    		runOne := func(b *testing.B) {
    			latencies := make([]time.Duration, 0, b.N)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

                ModelType.of(type),
                viewTypes.collect { ModelType.of(it) },
                delegateType == null ? null : ModelType.of(delegateType)
            )
        }
    
        def "finds #results.simpleName as the converging types among #types.simpleName"() {
            expect:
            DefaultStructBindingsStore.findConvergingTypes(types.collect { ModelType.of(it) }) as List == results.collect { ModelType.of(it) }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. test/fixedbugs/bug012.go

    	var i34 int64 = ^0;  // note: 2's complement means ^0 == -1
    	if i34 != -1 { panic("i34") }
    }
    /*
    bug12.go:5: overflow converting constant to <uint64>UINT64
    bug12.go:6: overflow converting constant to <uint64>UINT64
    bug12.go:7: overflow converting constant to <uint64>UINT64
    bug12.go:8: overflow converting constant to <uint64>UINT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 756 bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/annotations.go

    // MetricSpecsAnnotation is the annotation which holds non-CPU-utilization HPA metric
    // specs when converting the `Metrics` field from autoscaling/v2beta1
    const MetricSpecsAnnotation = "autoscaling.alpha.kubernetes.io/metrics"
    
    // MetricStatusesAnnotation is the annotation which holds non-CPU-utilization HPA metric
    // statuses when converting the `CurrentMetrics` field from autoscaling/v2beta1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 10 16:37:03 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/conversion.go

    // Convert_Slice_string_To_v1beta1_IncludeObjectPolicy allows converting a URL query parameter value
    func Convert_Slice_string_To_v1beta1_IncludeObjectPolicy(in *[]string, out *IncludeObjectPolicy, s conversion.Scope) error {
    	if len(*in) > 0 {
    		*out = IncludeObjectPolicy((*in)[0])
    	}
    	return nil
    }
    
    // Convert_v1beta1_PartialObjectMetadataList_To_v1_PartialObjectMetadataList allows converting PartialObjectMetadataList between versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:00 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

        return OkStatus();
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.def"
    
        default:
          return errors::Unimplemented(absl::StrCat(
              "Converting DataType '", DataTypeString(dtype), "' to MLIR Type"));
      }
    }
    
    Status ConvertScalarTypeToDataType(Type type, DataType* dtype) {
      if (type.isF16()) {
        *dtype = DT_HALF;
        return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/readonly_references_to_resources.mlir

    // RUN: tf-opt -verify-diagnostics -tf-readonly-references-to-resources -split-input-file %s | FileCheck %s
    
    // Test case: Basic converting.
    
    func.func @f() {
      // CHECK: "tf.VarHandleOp"
      // CHECK: "tf.ReadVariableOp"
      %val0 = "tf.VariableV2"() {_class = ["loc:@v"], container = "", device = "", shape = #tf_type.shape<96>, shared_name = ""} : () -> tensor<96x!tf_type.f32ref>
      %val1 = "tf.Identity"(%val0) : (tensor<96x!tf_type.f32ref>) -> tensor<96xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top