Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for deployName (0.23 sec)

  1. tests/integration/ambient/baseline_test.go

    						err := retry.Until(func() bool {
    							stc.Logf("sending call from %q to %q", deployName(localSrc), localDst.Config().Service)
    							localSrc.CallOrFail(stc, opt)
    							reqs, err := prom.QuerySum(localSrc.Config().Cluster, query)
    							if err != nil {
    								stc.Logf("could not query for traffic from %q to %q: %v", deployName(localSrc), localDst.Config().Service, err)
    								return false
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/idempotency.go

    	var lastError error
    	err := wait.PollUntilContextTimeout(context.Background(),
    		apiCallRetryInterval, kubeadmapi.GetActiveTimeouts().KubernetesAPICall.Duration,
    		true, func(_ context.Context) (bool, error) {
    			ctx := context.Background()
    			if _, err := client.AppsV1().Deployments(deploy.ObjectMeta.Namespace).Get(ctx, deployName, metav1.GetOptions{}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    apply plugin: "war"
    apply plugin: "eclipse-wtp"
    
    eclipse {
        project.name = "$nonAscii"
        classpath {
            containers "$nonAscii"
        }
    
        wtp {
            component {
                deployName = "$nonAscii"
            }
            facet {
                facet name: "$nonAscii"
            }
        }
    }
            """
    
            checkIsWrittenWithUtf8Encoding(getProjectFile())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top