Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 559 for Selections (0.2 sec)

  1. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VSPLTISB $0, T2  // VZERO T2
    	VSPLTISB $0, ZER // VZERO ZER
    
    	// Constants are defined so that the LXVD2X is correct
    	LXVD2X (CPOOL+R0), PH
    	LXVD2X (CPOOL+R16), PL
    
    	// VPERM byte selections
    	LXVD2X (CPOOL+R18), SEL2
    	LXVD2X (CPOOL+R19), SEL1
    
    	LXVD2X (R16)(x_ptr), T1
    	LXVD2X (R0)(x_ptr), T0
    
    	// Put in true little endian order
    	XXPERMDI T0, T0, $2, T0
    	XXPERMDI T1, T1, $2, T1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/k8sleaderelection/README.md

    k8sleaderelection
    
    This directory is a fork of the [Kubernetes leader election package](https://github.com/kubernetes/kubernetes/tree/67fa728bcf795e864ef5a63fa4144ae044967581/staging/src/k8s.io/client-go/tools/leaderelection) that includes [prioritized leader election](https://github.com/kubernetes/kubernetes/pull/103442). These changes are required in order to make it so that the default revision wins leader elections and steals locks from non-default revisions. The changes were not upstreamed...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableComponentIdResolveResult.java

        }
    
        @Override
        public void rejections(Collection<RejectedVersion> rejections) {
            if (rejections.isEmpty()) {
                return;
            }
            if (this.rejections == null) {
                this.rejections = new ImmutableSet.Builder<>();
            }
            this.rejections.addAll(rejections);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

        /**
         * Registers the list of rejections that happened during resolution for this module.
         * This method is used for dynamic modules, when there's often more than one
         * version which can match, but we actually select (or reject) more before selecting.
         *
         * @param rejections a collection of rejected versions
         */
        void rejections(Collection<RejectedVersion> rejections);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection.go

    	// Records which "cycle" the election is on. This is incremented each time an election is won and then lost
    	// This is mostly just for testing
    	cycle      *atomic.Int32
    	electionID string
    
    	// Store as field for testing
    	le *k8sleaderelection.LeaderElector
    	mu sync.RWMutex
    }
    
    // Run will start leader election, calling all runFns when we become the leader.
    // If leader election is disabled, it skips straight to the runFns.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. releasenotes/notes/multicluster-leader-election.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 47901
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 17:09:18 UTC 2023
    - 189 bytes
    - Viewed (0)
  7. releasenotes/notes/revision-tag-default-validation.yaml

    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** `istioctl tag set default` to control which revision handles Istio resource validation. The revision indicated
        through the default tag will also win leader elections and assume singleton cluster responsibilities.
    
    upgradeNotes:
      - title: Default revision must be switched when performing a revision-based upgrade.
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
  8. releasenotes/notes/drop-reload-prioritized-leader-election.yaml

    John Howard <******@****.***> 1682620625 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:37:05 UTC 2023
    - 148 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                            all { ComponentSelection selection ->
                                if (selection.candidate.version == '1.1') {
                                    status11 = selection.metadata.status
                                    branch11 = selection.getDescriptor(IvyModuleDescriptor).branch
                                } else {
                                    selection.reject('not 1.1')
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    	switch r.operator {
    	case selection.In, selection.Equals, selection.DoubleEquals:
    		if !ls.Has(r.key) {
    			return false
    		}
    		return r.hasValue(ls.Get(r.key))
    	case selection.NotIn, selection.NotEquals:
    		if !ls.Has(r.key) {
    			return true
    		}
    		return !r.hasValue(ls.Get(r.key))
    	case selection.Exists:
    		return ls.Has(r.key)
    	case selection.DoesNotExist:
    		return !ls.Has(r.key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
Back to top