Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 252 for SELECTION (0.12 sec)

  1. src/go/types/selection.go

    func (s *Selection) Recv() Type { return s.recv }
    
    // Obj returns the object denoted by x.f; a *Var for
    // a field selection, and a *Func in all other cases.
    func (s *Selection) Obj() Object { return s.obj }
    
    // Type returns the type of x.f, which may be different from the type of f.
    // See Selection for more information.
    func (s *Selection) Type() Type {
    	switch s.kind {
    	case MethodVal:
    		// The type of x.f is a method with its receiver type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/selection.go

    func (s *Selection) Recv() Type { return s.recv }
    
    // Obj returns the object denoted by x.f; a *Var for
    // a field selection, and a *Func in all other cases.
    func (s *Selection) Obj() Object { return s.obj }
    
    // Type returns the type of x.f, which may be different from the type of f.
    // See Selection for more information.
    func (s *Selection) Type() Type {
    	switch s.kind {
    	case MethodVal:
    		// The type of x.f is a method with its receiver type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/model/policyattachment_test.go

    		IsWaypoint: true,
    		Service:    "sample-svc",
    	}
    	tests := []struct {
    		name                   string
    		selection              WorkloadPolicyMatcher
    		policy                 TargetablePolicy
    		enableSelectorPolicies bool
    
    		expected bool
    	}{
    		{
    			name:      "non-gateway API workload and a targetRef",
    			selection: regularApp,
    			policy: &mockPolicyTargetGetter{
    				targetRef: sampleTargetRef,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        dns[uriHost] = dns.allocate(1)
        var selection = routeSelector.next()
        val route = selection.next()
        routeDatabase.failed(route)
        routeSelector = newRouteSelector(address)
        selection = routeSelector.next()
        assertRoute(selection.next(), address, Proxy.NO_PROXY, dns.lookup(uriHost, 0), uriPort)
        assertThat(selection.hasNext()).isFalse()
        assertFailsWith<NoSuchElementException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                } else {
                    Path projectPrefix = selection.getOriginalPath().getParent();
                    ProjectState project = defaultBuild.getProjects().getProject(projectPrefix);
                    return getSelectorForBuild(defaultBuild).getSelection(selection, project, selection.getOriginalPath().getName(), false);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSelectionSpec.java

        }
    
        /**
         * If false, selection is restricted only to the artifacts exposed a selected node in the graph.
         * If true, selection is expanded to include artifacts from any variant exposed by the component that a given node belongs to.
         */
        public boolean getSelectFromAllVariants() {
            return selectFromAllVariants;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResultsTest.groovy

    import org.gradle.api.internal.artifacts.transform.ArtifactVariantSelector
    import spock.lang.Specification
    
    class DefaultVisitedArtifactResultsTest extends Specification {
        def "strict selection includes selected variant of each node"() {
            def artifacts1 = Stub(ArtifactSet)
            def artifacts2 = Stub(ArtifactSet)
            def variant1Artifacts = Stub(ResolvedArtifactSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskParser.java

                String path = remainingPaths.remove(0);
                TaskSelection selection = taskSelector.resolveTaskName(taskExecutionRequest.getRootDir(), taskExecutionRequest.getProjectPath(), targetBuild, path);
                Set<Task> tasks = selection.getTasks();
                remainingPaths = taskConfigurer.configureTasks(tasks, remainingPaths);
                out.add(selection);
            }
            return out;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    [[sec:resolving-variant-aware-errors]]
    === Variant Selection Errors
    
    Sometimes a selection error happens at the <<variant_model.adoc#understanding-variant-selection,variant selection level>>.
    Have a look at the <<variant_model.adoc#sec:variant-select-errors,dedicated section>> to understand these errors and how to resolve them.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top