Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 342 for overloads (0.17 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

    spec:
      profile: empty
      hub: docker.io/istio
      tag: 1.1.4
      meshConfig:
        rootNamespace: istio-control
      components:
        base:
          enabled: true
          k8s:
            # Base component only allows overlays field.
            overlays:
              - kind: ServiceAccount
                name: istio-reader-service-account
                patches:
                  # Select list item by value
                  - path: spec.automountServiceAccountToken
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/image/geom_test.go

    			}
    			if err := in(a, s); err != nil {
    				t.Errorf("Intersect: r=%s, s=%s, a=%s, a not in s: %v", r, s, a, err)
    			}
    			if isZero, overlaps := a == (Rectangle{}), r.Overlaps(s); isZero == overlaps {
    				t.Errorf("Intersect: r=%s, s=%s, a=%s: isZero=%t same as overlaps=%t",
    					r, s, a, isZero, overlaps)
    			}
    			largerThanA := [4]Rectangle{a, a, a, a}
    			largerThanA[0].Min.X--
    			largerThanA[1].Min.Y--
    			largerThanA[2].Max.X++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodsTest.groovy

            Object someMethodName(Object o)
        }
    
        interface ChildType extends BaseType {
            @Override String someMethodName(Object o)
            int someMethodName(int i)
        }
    
        def "distinguish overloaded overridden method signatures"() {
            def takeObjReturnObj = BaseType.declaredMethods[0]
            def takeObjReturnStr = ChildType.declaredMethods[0]
            def takeIntReturnInt = ChildType.declaredMethods[1]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         * Return a sequence of [KaCallableSymbol] which current scope contain if declaration name matches [nameFilter].
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
         * The overload with `names: Collection<Name>` should be used when the candidate name set is known.
         */
        public fun getCallableSymbols(nameFilter: KaScopeNameFilter = { true }): Sequence<KaCallableSymbol>
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/intervals.go

    		return c2
    	}
    	if c2.pairIndex == -1 {
    		return c1
    	}
    	if c1.i.st <= c2.i.st {
    		return c1
    	}
    	return c2
    }
    
    // Overlaps returns whether any of the component ranges in is overlaps
    // with some range in is2.
    func (is Intervals) Overlaps(is2 Intervals) bool {
    	// check for empty intervals
    	if len(is) == 0 || len(is2) == 0 {
    		return false
    	}
    	li := len(is)
    	li2 := len(is2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. operator/pkg/component/component.go

    	// Add the k8s resource overlays from IstioOperatorSpec.
    	pathToK8sOverlay := fmt.Sprintf("Components.%s.", cf.CommonComponentFields.ComponentName)
    	if cf.CommonComponentFields.ComponentName.IsGateway() {
    		pathToK8sOverlay += fmt.Sprintf("%d.", cf.index)
    	}
    
    	pathToK8sOverlay += "K8S.Overlays"
    	var overlays []*v1alpha1.K8SObjectOverlay
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. pkg/controller/validatingadmissionpolicystatus/controller_test.go

    				},
    			}, makePolicy("confused-deployment"))),
    			assertFieldRef: toBe("spec.validations[1].expression"),
    			assertWarnings: toHaveSubstring(`found no matching overload for '_>_' applied to '(int, string)'`),
    		},
    		{
    			name: "two expressions different type checking errors",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            public String getOverloaded() {
                return overloaded;
            }
    
            public void setOverloaded(Number overloaded) {
                this.overloaded = String.format("number = %s", overloaded);
            }
    
            public void setOverloaded(CharSequence overloaded) {
                this.overloaded = String.format("chars = %s", overloaded);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  9. operator/pkg/patch/patch.go

    		return true
    	}
    	return false
    }
    
    // YAMLManifestPatch patches a base YAML in the given namespace with a list of overlays.
    // Each overlay has the format described in the K8SObjectOverlay definition.
    // It returns the patched manifest YAML.
    func YAMLManifestPatch(baseYAML string, defaultNamespace string, overlays []*v1alpha1.K8SObjectOverlay) (string, error) {
    	var ret strings.Builder
    	var errs util.Errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. pkg/apis/certificates/v1beta1/defaults_test.go

    	"net"
    	"net/url"
    	"reflect"
    	"testing"
    
    	capi "k8s.io/api/certificates/v1beta1"
    )
    
    func TestIsKubeletServingCSR(t *testing.T) {
    	newCSR := func(base pemOptions, overlays ...pemOptions) *x509.CertificateRequest {
    		b := csrWithOpts(base, overlays...)
    		csr, err := ParseCSR(b)
    		if err != nil {
    			t.Fatal(err)
    		}
    		return csr
    	}
    	tests := map[string]struct {
    		req    *x509.CertificateRequest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
Back to top