Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 553 for delay (0.04 sec)

  1. tests/util/leak/check.go

    	var leaked []*goroutine
    	var err error
    	delay := time.Duration(0)
    	for time.Now().Before(deadline) {
    		leaked, err = interestingGoroutines()
    		if err != nil {
    			return fmt.Errorf("failed to fetch post-test goroutines: %v", err)
    		}
    		if filter != nil {
    			leaked = filter(leaked)
    		}
    		if len(leaked) == 0 {
    			return nil
    		}
    		time.Sleep(delay)
    		delay += time.Millisecond * 10
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deprecation.yaml

           portNumber: 15443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage
      http:
      - fault:
          delay:
            percent: 50
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: no-selector
      namespace: default
    spec:
      ingress:
      - port:
          number: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. src/packaging/common/systemd/fess.service

    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    # Shutdown delay in seconds, before process is tried to be killed with KILL (if configured)
    TimeoutStopSec=20
    
    [Install]
    WantedBy=multi-user.target
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    ----
    \$ ./gradlew run
    
    > Task :${subprojectName.raw}:run
    Hello world!
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    == Bundle the application
    
    The `application` plugin also bundles the application, with all its dependencies, for you.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. cluster/gce/gci/master.yaml

          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
          ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin
          ExecStartPre=/usr/bin/curl --fail --retry 600 --retry-delay 3 --retry-connrefused --connect-timeout 10 --silent --show-error -H "X-Google-Metadata-Request: True" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. src/runtime/netpoll_fake.go

    	return 0
    }
    
    func netpollclose(fd uintptr) int32 {
    	return 0
    }
    
    func netpollarm(pd *pollDesc, mode int) {
    }
    
    func netpollBreak() {
    }
    
    func netpoll(delay int64) (gList, int32) {
    	return gList{}, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 15:45:57 UTC 2023
    - 664 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline_test.go

    			longRunning:              false,
    			handlerCallCountExpected: 1,
    			hasDeadlineExpected:      true,
    			deadlineExpected:         14 * time.Second, // to account for the delay in verification
    			statusCodeExpected:       http.StatusOK,
    		},
    		{
    			name:                     "the user specifies a valid request timeout",
    			requestURL:               "/api/v1/namespaces?timeout=15s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  8. tests/testdata/config/rule-fault-injection.yaml

              version:
                exact: v2
            sourceLabels:
              version: v1
          route:
          - destination:
              host: c
              subset: v2
            weight: 100
          fault:
            delay:
              percentage:
                value: 100.0
              fixedDelay: 5s
            abort:
              percentage:
                value: 100.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/gw_topology_test.go

    			retry.UntilSuccessOrFail(t, func() error {
    				_, err := kubetest.CheckPodsAreReady(kubetest.NewPodFetch(cs, gatewayNs.Name(), "istio=ingressgateway"))
    				return err
    			}, retry.Timeout(time.Minute*2), retry.Delay(time.Second))
    			for _, tt := range common.XFFGatewayCase(&apps, fmt.Sprintf("custom-gateway.%s.svc.cluster.local", gatewayNs.Name())) {
    				tt.Run(t, apps.Namespace.Name())
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. cni/test/install_cni.go

    func compareConfResult(result, expected string, t *testing.T) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		return checkResult(result, expected)
    	}, retry.Delay(time.Millisecond*10), retry.Timeout(time.Second*3))
    }
    
    // checkBinDir verifies the presence/absence of test files.
    func checkBinDir(t *testing.T, tempCNIBinDir, op string, files ...string) error {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top