Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for ptrval (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== The JDepend plugin has been removed
    
    The deprecated JDepend plugin has been removed.
    There are a number of community-provided plugins for code and architecture analysis available on the link:https://plugins.gradle.org[Gradle Plugin Portal].
    
    ==== The OSGI plugin has been removed
    
    The deprecated OSGI plugin has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    	badPLNames := sets.NewString("ql1", "ql2", "ql3", "ql4", "ql5")
    	for i := 0; i < 300; i++ {
    		rng := rand.New(rand.NewSource(int64(rngOuter.Uint64())))
    		t.Run(fmt.Sprintf("trial%d:", i), func(t *testing.T) {
    			ftr := genFS(t, rng, fmt.Sprintf("fs%d", i), rng.Float32() < 0.2, goodPLNames, badPLNames)
    			checkFTR(t, ftr)
    		})
    	}
    }
    
    func checkFTR(t *testing.T, ftr *fsTestingRecord) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/conversion_test.go

    			Ports: []corev1.ServicePort{
    				{
    					Name:     "test-svc-port",
    					Protocol: "TCP",
    					Port:     8888,
    					TargetPort: intstr.IntOrString{
    						Type:   intstr.String,
    						StrVal: "test-port",
    					},
    				},
    			},
    			Selector: map[string]string{
    				"app": "test-app",
    			},
    		},
    	}
    	serviceLister := createFakeClient(t, service)
    	cfgs := map[string]*config.Config{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/test-util_test.go

    	}
    	if ip != "" {
    		out["ip"] = ip
    	}
    	if nodeName != "" {
    		out["nodeName"] = nodeName
    	}
    	return out
    }
    
    // portVal returns a map having service port type. A value of -1 for port or targetPort leaves those keys unset.
    func portVal(name string, port, targetPort int64) map[string]any {
    	out := make(map[string]any)
    	if name != "" {
    		out["name"] = name
    	}
    	if port != -1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    		g.Expect(s).Should(HavePathValueContain(PathValue{"spec.ports.[0]", portVal("grpc-pilot-mtls", 15011, -1)}))
    		g.Expect(s).Should(HavePathValueContain(PathValue{"spec.ports.[1]", portVal("tcp-citadel-grpc-tls", 8060, 8060)}))
    		g.Expect(s).Should(HavePathValueContain(PathValue{"spec.ports.[2]", portVal("tcp-dns", 5353, -1)}))
    
    		for _, o := range objs.kind(name.HPAStr).objSlice {
    			ou := o.Unstructured()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation.go

    			}
    			for _, msg := range validation.IsValidPortName(port.Port.StrVal) {
    				allErrs = append(allErrs, field.Invalid(portPath.Child("port"), port.Port.StrVal, msg))
    			}
    		}
    	} else {
    		if port.EndPort != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. pkg/api/v1/pod/util.go

    // match is found, fail.
    func FindPort(pod *v1.Pod, svcPort *v1.ServicePort) (int, error) {
    	portName := svcPort.TargetPort
    	switch portName.Type {
    	case intstr.String:
    		name := portName.StrVal
    		for _, container := range pod.Spec.Containers {
    			for _, port := range container.Ports {
    				if port.Name == name && port.Protocol == svcPort.Protocol {
    					return int(port.ContainerPort), nil
    				}
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

        }
    
        static String helloWorldPlugin(String version) {
            """
                plugins {
                    id "org.gradle.hello-world" version "$version" //exists in the plugin portal
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

                )
            )
            assertContainsBuildSrc(scriptPluginClassPath)
            assertContainsGradleKotlinDslJars(scriptPluginClassPath)
        }
    
    
        def "can fetch classpath of plugin portal plugin in plugins block"() {
    
            given:
            withDefaultSettings()
            withBuildScript("""
                plugins {
                    id("org.gradle.hello-world") version "0.2"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    As such, we distinguish between three different kinds of plugins:
    
    1. *Core Plugins* - plugins that come from Gradle.
    2. *Community Plugins* - plugins that come from link:https://plugins.gradle.org/[Gradle Plugin Portal] or a public repository.
    3. *Local or Custom Plugins* - plugins that you develop yourself.
    
    === Core Plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top