Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 554 for SELECTION (0.13 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. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    			getRequirement("y", selection.Exists, nil, t),
    		}, true},
    		{Set{"y": ""}, &internalSelector{
    			getRequirement("x", selection.DoesNotExist, nil, t),
    			getRequirement("y", selection.Exists, nil, t),
    		}, true},
    		{Set{"y": ""}, &internalSelector{
    			getRequirement("x", selection.NotIn, sets.NewString(""), t),
    			getRequirement("y", selection.DoesNotExist, nil, t),
    		}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultComponentSelectionTest.groovy

            selection.reject("bad")
    
            then:
            selection.rejected
            selection.rejectionReason == "bad"
        }
    
        def "last rejection wins"() {
            when:
            selection.reject("bad")
            selection.reject("worse")
    
            then:
            selection.rejected
            selection.rejectionReason == "worse"
        }
    
        def 'delegates to metadata provider for metadata access'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

            "reject all": """{ ComponentSelection selection ->
                    selection.reject("rejecting everything")
                    candidates << selection.candidate.version
                }
                """,
            "reject all with metadata": """{ ComponentSelection selection ->
                    if (selection.metadata != null) {
                        selection.reject("rejecting everything")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

                    // Accept the highest version matching the requested version that isn't '1.5'
                    all { ComponentSelection selection ->
                        if (selection.candidate.group == 'org.sample' && selection.candidate.module == 'api' && selection.candidate.version == '1.5') {
                            selection.reject("version 1.5 is broken for 'org.sample:api'")
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top