Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 214 for Selections (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    }
    
    // isMethodExpr reports whether a call is to a MethodExpr.
    func isMethodExpr(info *types.Info, c *ast.CallExpr) bool {
    	s, ok := c.Fun.(*ast.SelectorExpr)
    	if !ok {
    		return false
    	}
    	sel := info.Selections[s]
    	return sel != nil && sel.Kind() == types.MethodExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolvingBuildTaskSchedulerSpec.groovy

            def task3 = Stub(Task)
            def selection1 = Stub(TaskSelection)
            def selection2 = Stub(TaskSelection)
    
            given:
            _ * gradle.startParameter >> startParameters
            _ * startParameters.taskRequests >> [request1, request2]
    
            def tasks1 = [task1, task2] as Set
            _ * selection1.tasks >> tasks1
    
            def tasks2 = [task3] as Set
            _ * selection2.tasks >> tasks2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskParserSpec.groovy

            def selection1 = new TaskSelection(':project', ':foo', asTaskSelectionResults(task, task2))
            def selection2 = new TaskSelection(':project', ':bar', asTaskSelectionResults(task3))
    
            selector.resolveTaskName(null, null, defaultBuild, 'foo') >> selection1
            selector.resolveTaskName(null, null, defaultBuild, 'bar') >> selection2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    setSelection(ranges,preventEvent){var axis,range,o=plot.getOptions();if(o.selection.mode=="y"){selection.first.x=0;selection.second.x=plot.width()}else{range=extractRange(ranges,"x");selection.first.x=range.axis.p2c(range.from);selection.second.x=range.axis.p2c(range.to)}if(o.selection.mode=="x"){selection.first.y=0;selection.second.y=plot.height()}else{range=extractRange(ranges,"y");selection.first.y=range.axis.p2c(range.from);selection.second.y=range.axis.p2c(range.to)}selection.show=true;plot.trigger...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top