Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,273 for updateVX (0.32 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    import (
    	"golang.org/x/sys/cpu"
    )
    
    // updateVX is an assembly implementation of Poly1305 that uses vector
    // instructions. It must only be called if the vector facility (vx) is
    // available.
    //
    //go:noescape
    func updateVX(state *macState, msg []byte)
    
    // mac is a replacement for macGeneric that uses a larger buffer and redirects
    // calls that would have gone to updateGeneric to updateVX if the vector
    // facility is installed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VN     MOD26, d1, d1     \ // [in0₂₆[1], in1₂₆[1]]
    	VN     MOD24, d4, d4     \ // [in0₂₆[4], in1₂₆[4]]
    	VN     MOD26, d2, d2     // [in0₂₆[2], in1₂₆[2]]
    
    // func updateVX(state *macState, msg []byte)
    TEXT ·updateVX(SB), NOSPLIT, $0
    	MOVD state+0(FP), R1
    	LMG  msg+8(FP), R2, R3 // R2=msg_base, R3=msg_len
    
    	// load EX0, EX1 and EX2
    	MOVD $·constants<>(SB), R5
    	VLM  (R5), EX0, EX2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

                        calculatedValue.update {
                            assert it == "updated1"
                            instant.thread2
                            "updated2"
                        }
                    }
                }
            }
    
            then:
            calculatedValue.get() == "updated2"
            instant.thread1 < instant.thread2
        }
    
        def "update thread does not block other read threads"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. pkg/controller/daemon/update.go

    		cur, err = dsc.dedupCurHistories(ctx, ds, currentHistories)
    		if err != nil {
    			return nil, nil, err
    		}
    		// Update revision number if necessary
    		if cur.Revision < currRevision {
    			toUpdate := cur.DeepCopy()
    			toUpdate.Revision = currRevision
    			_, err = dsc.kubeClient.AppsV1().ControllerRevisions(ds.Namespace).Update(ctx, toUpdate, metav1.UpdateOptions{})
    			if err != nil {
    				return nil, nil, err
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. hack/update-translations.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script updates `staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot` and
    # generates/fixes .po and .mo files.
    # Usage: `update-translations.sh`.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    func NewFakeXDS() *Updater {
    	return &Updater{
    		SplitEvents: false,
    		Events:      make(chan Event, 100),
    	}
    }
    
    // NewWithDelegate creates a XdsUpdater reporting events via a channel.
    func NewWithDelegate(delegate model.XDSUpdater) *Updater {
    	return &Updater{
    		Events:   make(chan Event, 100),
    		Delegate: delegate,
    	}
    }
    
    // Updater is used to test the registry.
    type Updater struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. .github/workflows/update-rbe.yml

    
    # This Workflow updates tensorflow/tools/toolchains/remote_config/configs.bzl
    # to reference the most recent versions of the SIG Build Docker images.
    name: Update RBE Configs
    on:
      workflow_dispatch:
    
    permissions:
      contents: read
    
    jobs:
      rbe:
        name: Update RBE Configs
        runs-on: ubuntu-latest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/sync/sync.go

    	run(logger klog.Logger, sync *NodeSync) error
    }
    
    // updateOp handles creation and updates of a node.
    type updateOp struct {
    	node *v1.Node
    }
    
    func (op *updateOp) String() string {
    	if op.node == nil {
    		return fmt.Sprintf("updateOp(nil)")
    	}
    	return fmt.Sprintf("updateOp(%q,%v)", op.node.Name, op.node.Spec.PodCIDR)
    }
    
    func (op *updateOp) run(logger klog.Logger, sync *NodeSync) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/discovery_test.go

    				updateCh <- &model.PushRequest{Full: true}
    				updateCh <- &model.PushRequest{Full: true}
    				expect(0, 1)
    			},
    		},
    		{
    			name: "Should send full updates in batches, partial updates immediately",
    			test: func(updateCh chan *model.PushRequest, expect func(partial, full int32)) {
    				updateCh <- &model.PushRequest{Full: true}
    				updateCh <- &model.PushRequest{Full: true}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers.go

    		}
    		return updaters[i] < updaters[j]
    	})
    
    	// Merge the oldest updaters with versioned bucket managers until the number of updaters is under the cap
    	versionToFirstManager := map[string]string{}
    	for i, length := 0, len(updaters); i < len(updaters) && length > f.maxUpdateManagers; i++ {
    		manager := updaters[i]
    		vs := managed.Fields()[manager]
    		time := managed.Times()[manager]
    		version := string(vs.APIVersion())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top