Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ptrval (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    It depends on how they have been published and, specifically, whether they have been published with the necessary <<plugins#sec:plugin_markers,plugin marker artifacts>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	return toType(abi.TypeOf(i))
    }
    
    // rtypeOf directly extracts the *rtype of the provided value.
    func rtypeOf(i any) *abi.Type {
    	return abi.TypeOf(i)
    }
    
    // ptrMap is the cache for PointerTo.
    var ptrMap sync.Map // map[*rtype]*ptrType
    
    // PtrTo returns the pointer type with element t.
    // For example, if t represents type Foo, PtrTo(t) represents *Foo.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	t.Helper()
    	// avoid mutating input
    	svc = svc.DeepCopy()
    	// simulate actual k8s behavior
    	for i, port := range svc.Spec.Ports {
    		if port.TargetPort.IntVal == 0 && port.TargetPort.StrVal == "" {
    			svc.Spec.Ports[i].TargetPort.IntVal = port.Port
    		}
    	}
    
    	_, err := c.CoreV1().Services(svc.Namespace).Create(context.Background(), svc, metav1.CreateOptions{})
    	if kerrors.IsAlreadyExists(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    message IntOrString {
      int64 type = 1;
    
      google.protobuf.Int32Value intVal = 2;
    
      google.protobuf.StringValue strVal = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		},
    		[]corev1.ServicePort{
    			{
    				Name:       "http-port",
    				Port:       8080,
    				Protocol:   "TCP",
    				TargetPort: intstr.IntOrString{Type: intstr.String, StrVal: "http"},
    			},
    		},
    		map[string]string{"app": "ratings"}, t)
    
    	wiRatings1 := &model.WorkloadInstance{
    		Name:      "ratings-1",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    		} else {
    			proxier.logger.Error(err, "Failed to execute iptables-save: stale chains will not be deleted")
    		}
    	}
    
    	// Finally, tail-call to the nodePorts chain.  This needs to be after all
    	// other service portal rules.
    	if proxier.nodePortAddresses.MatchAll() {
    		destinations := []string{"-m", "addrtype", "--dst-type", "LOCAL"}
    		// Block localhost nodePorts if they are not supported. (For IPv6 they never
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	"k8s.io/kubernetes/pkg/util/async"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    )
    
    const (
    	// kubeServicesChain is the services portal chain
    	kubeServicesChain utiliptables.Chain = "KUBE-SERVICES"
    
    	// kubeProxyFirewallChain is the kube-proxy firewall chain.
    	kubeProxyFirewallChain utiliptables.Chain = "KUBE-PROXY-FIREWALL"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Upgrade to version 3.13.1 or later of the Develocity plugin.
    You can find the link:https://plugins.gradle.org/plugin/com.gradle.enterprise[latest available version on the Gradle Plugin Portal].
    More information on the compatibility can be found link:https://docs.gradle.com/enterprise/compatibility/#build_scans[here].
    
    [[changes_8.2]]
    == Upgrading from 8.1 and earlier
    
    === Potential breaking changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top