Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for progression (0.18 sec)

  1. src/crypto/tls/conn.go

    			payloadBytes -= c.out.mac.Size()
    		default:
    			panic("unknown cipher type")
    		}
    	}
    	if c.vers == VersionTLS13 {
    		payloadBytes-- // encrypted ContentType
    	}
    
    	// Allow packet growth in arithmetic progression up to max.
    	pkt := c.packetsSent
    	c.packetsSent++
    	if pkt > 1000 {
    		return maxPlaintext // avoid overflow in multiply below
    	}
    
    	n := payloadBytes * int(pkt+1)
    	if n > maxPlaintext {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // the same cluster with nodes from the loop body, extra dependency is
        // created between the loop cond and body computations and it hinders the
        // progression of the loop cond computation at runtime with significant
        // overhead.  Specifically, we look for the below pattern and do not cluster
        // in this Identity to avoid the described issue.  Since Identity has low
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Progressing means the deployment is progressing. Progress for a deployment is
    	// considered when a new replica set is created or adopted, and when new pods scale
    	// up or old pods scale down. Progress is not estimated for paused deployments or
    	// when progressDeadlineSeconds is not specified.
    	DeploymentProgressing DeploymentConditionType = "Progressing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// Progressing means the deployment is progressing. Progress for a deployment is
    	// considered when a new replica set is created or adopted, and when new pods scale
    	// up or old pods scale down. Progress is not estimated for paused deployments or
    	// when progressDeadlineSeconds is not specified.
    	DeploymentProgressing DeploymentConditionType = "Progressing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    
    <!-- END MUNGE: GENERATED_TOC -->
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        exception, "Expected Android API level 21+ but was 29".
    
    
    ## Version 3.14.6
    
    _2020-01-11_
    
     *  Fix: Don't crash if the connection is closed when sending a degraded ping. This fixes a
        regression that was introduced in OkHttp 3.14.5.
    
    
    ## Version 3.14.5
    
    _2020-01-03_
    
     *  Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      }
    
      /**
       * Test to ensure we don't  throw a read timeout on responses that are progressing.  For this
       * case, we take a 4KiB body and throttle it to 1KiB/second.  We set the read timeout to two
       * seconds.  If our implementation is acting correctly, it will not throw, as it is progressing.
       */
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Progressing means the deployment is progressing. Progress for a deployment is
    	// considered when a new replica set is created or adopted, and when new pods scale
    	// up or old pods scale down. Progress is not estimated for paused deployments or
    	// when progressDeadlineSeconds is not specified.
    	DeploymentProgressing DeploymentConditionType = "Progressing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/replica_calculator_test.go

    			targetUtilization:   50,
    			expectedUtilization: 28,
    			expectedValue:       numContainersPerPod * 280,
    		},
    	}
    	tc.runTest(t)
    }
    
    // Regression test for https://github.com/kubernetes/kubernetes/issues/83561
    func TestReplicaCalcScaleDownIgnoresDeletionPods_StillRunning(t *testing.T) {
    	tc := replicaCalcTestCase{
    		currentReplicas:      5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_EQ(clusters["B"], clusters["C"]);
      EXPECT_TRUE(clusters.find("A") == clusters.cend());
      EXPECT_TRUE(clusters.find("D") == clusters.cend());
    }
    
    TEST(XlaCompilationTest, Loops) {
      // Regression test for b/32350199, where the autoclustering code introduced a
      // deadlock in a graph containing a while loop.
      Scope root = Scope::NewRootScope().ExitOnError();
      auto a = ops::Placeholder(root.WithOpName("A"), DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top