Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 461 for timeoutSeconds (0.28 sec)

  1. pkg/apis/admissionregistration/v1/defaults.go

    		obj.NamespaceSelector = &selector
    	}
    	if obj.ObjectSelector == nil {
    		selector := metav1.LabelSelector{}
    		obj.ObjectSelector = &selector
    	}
    	if obj.TimeoutSeconds == nil {
    		obj.TimeoutSeconds = new(int32)
    		*obj.TimeoutSeconds = 10
    	}
    }
    
    // SetDefaults_MutatingWebhook sets defaults for webhook mutating
    func SetDefaults_MutatingWebhook(obj *admissionregistrationv1.MutatingWebhook) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. samples/grpc-echo/grpc-echo.yaml

                initialDelaySeconds: 1
                periodSeconds: 2
                successThreshold: 1
                timeoutSeconds: 1
              startupProbe:
                failureThreshold: 10
                periodSeconds: 10
                successThreshold: 1
                tcpSocket:
                  port: tcp-health-port
                timeoutSeconds: 1
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: echo-v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/wait.go

    			client := &http.Client{
    				Timeout: time.Duration(requestTimeoutMillis) * time.Millisecond,
    			}
    			log.Infof("Waiting for Envoy proxy to be ready (timeout: %d seconds)...", timeoutSeconds)
    
    			var err error
    			timeout := time.After(time.Duration(timeoutSeconds) * time.Second)
    
    			for {
    				select {
    				case <-timeout:
    					return fmt.Errorf("timeout waiting for Envoy proxy to become ready. Last error: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       */
      @SuppressWarnings("removal") // b/260137033
      public static void awaitDone(Future<?> future) {
        if (future.isDone()) {
          return;
        }
        long timeoutSeconds = timeoutSeconds();
        long deadline = System.nanoTime() + SECONDS.toNanos(timeoutSeconds);
        do {
          System.runFinalization();
          if (future.isDone()) {
            return;
          }
          System.gc();
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/v1beta1/defaults.go

    		unknown := admissionregistrationv1beta1.SideEffectClassUnknown
    		obj.SideEffects = &unknown
    	}
    	if obj.TimeoutSeconds == nil {
    		obj.TimeoutSeconds = new(int32)
    		*obj.TimeoutSeconds = 30
    	}
    
    	if len(obj.AdmissionReviewVersions) == 0 {
    		obj.AdmissionReviewVersions = []string{admissionregistrationv1beta1.SchemeGroupVersion.Version}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. istioctl/pkg/checkinject/testdata/check-inject/never-match-injector.yaml

          - apiGroups:
              - ""
            apiVersions:
              - v1
            operations:
              - CREATE
            resources:
              - pods
            scope: '*'
        sideEffects: None
        timeoutSeconds: 10
      - admissionReviewVersions:
          - v1beta1
          - v1
        clientConfig:
          service:
            name: istiod
            namespace: istio-system
            path: /inject
            port: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/GcFinalization.java

       */
      @SuppressWarnings("removal") // b/260137033
      public static void awaitDone(Future<?> future) {
        if (future.isDone()) {
          return;
        }
        long timeoutSeconds = timeoutSeconds();
        long deadline = System.nanoTime() + SECONDS.toNanos(timeoutSeconds);
        do {
          System.runFinalization();
          if (future.isDone()) {
            return;
          }
          System.gc();
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

          - apiGroups:
              - ""
            apiVersions:
              - v1
            operations:
              - CREATE
            resources:
              - pods
            scope: '*'
        sideEffects: None
        timeoutSeconds: 10
      - admissionReviewVersions:
          - v1beta1
          - v1
        clientConfig:
          service:
            name: istiod
            namespace: istio-system
            path: /inject
            port: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod-test-dev2
          namespace: istio-system
          path: /inject
          port: 443
      failurePolicy: Fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. pkg/kube/inject/app_probe_test.go

    									Port:    1234,
    									Service: &svc,
    								},
    							},
    							TimeoutSeconds: 10,
    						},
    					},
    				},
    			}},
    			expected: `
    {
        "/app-health/foo/startupz": {
            "grpc": {
                "port": 1234,
                "service": "foo"
            },
            "timeoutSeconds": 10
        }
    }`,
    		},
    	} {
    		got := DumpAppProbers(tc.pod, 15020)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top