Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for Roll (0.11 sec)

  1. docs/changelogs/changelog_4x.md

    making compression the default for everyone starting with this release candidate.
    
    Please be considerate of your servers and their operators as you roll out this release. Compression
    saves bandwidth but it costs CPU and memory! If you run into a problem you may need to adjust or
    disable the `permessage-deflate` compression settings on your server.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_tls13.go

    		return err
    	}
    
    	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
    
    	// If we did not request client certificates, at this point we can
    	// precompute the client finished and roll the transcript forward to send
    	// session tickets in our first flight.
    	if !hs.requestClientCert() {
    		if err := hs.sendSessionTickets(); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	// Special treatment is required for etcd case, when rollbackOldManifests should roll back etcd
    	// manifests only for the case when component is Etcd. Also check if the kube-apiserver needs an upgrade
    	// by comparing its manifests and later decide if etcd certs can be renewed and etcd can be restarted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control.go

    		// if the equivalent revision is immediately prior the update revision has not changed
    		updateRevision = revisions[revisionCount-1]
    	} else if equalCount > 0 {
    		// if the equivalent revision is not immediately prior we will roll back by incrementing the
    		// Revision of the equivalent revision
    		updateRevision, err = ssc.controllerHistory.UpdateControllerRevision(
    			equalRevisions[equalCount-1],
    			updateRevision.Revision)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// Changes to either Spec or Status are relevant.  The
    			// concern is that we might, in some future release, want
    			// different behavior than is implemented now. One of the
    			// hardest questions is how does an operator roll out the
    			// new release in a cluster with multiple kube-apiservers
    			// --- in a way that works no matter what servers crash
    			// and restart when. If this handler reacts only to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    }
    
    // BeginTx starts a transaction.
    //
    // The provided context is used until the transaction is committed or rolled back.
    // If the context is canceled, the sql package will roll back
    // the transaction. [Tx.Commit] will return an error if the context provided to
    // BeginTx is canceled.
    //
    // The provided [TxOptions] is optional and may be nil if defaults should be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    	}
    	mg.RegisterRead(func(_ context.Context) []MetricV2 {
    		ml := []MetricV2{}
    
    		// metrics pertinent to site replication - overall roll up.
    		if globalSiteReplicationSys.isEnabled() {
    			m, err := globalSiteReplicationSys.getSiteMetrics(GlobalContext)
    			if err != nil {
    				metricsLogIf(GlobalContext, err)
    				return ml
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    For example:
    
    ```
    # 't' is [0, 1, 2, 3, 4]
    roll(t, shift=2, axis=0) ==> [3, 4, 0, 1, 2]
    
    # shifting along multiple dimensions
    # 't' is [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]
    roll(t, shift=[1, -2], axis=[0, 1]) ==> [[7, 8, 9, 5, 6], [2, 3, 4, 0, 1]]
    
    # shifting along the same axis multiple times
    # 't' is [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]
    roll(t, shift=[2, -3], axis=[1, 1]) ==> [[1, 2, 3, 4, 0], [6, 7, 8, 9, 5]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

        func.return %0 : tensor<4x10xf32>
    }
    
    //===----------------------------------------------------------------------===//
    // Roll op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: func @Roll_0D
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            // Select default project name
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(projectNamePrompt)
            }
            handle.stdinPipe.write(TextUtil.platformLineSeparator.bytes)
    
            // Select 'kotlin DSL'
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(dslPrompt)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top