Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,100 for slerp (0.04 sec)

  1. samples/sleep/sleep.yaml

    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: sleep
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: sleep
      template:
        metadata:
          labels:
            app: sleep
        spec:
          terminationGracePeriodSeconds: 0
          serviceAccountName: sleep
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. pkg/sleep/sleep.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package sleep
    
    import (
    	"context"
    	"time"
    )
    
    // UntilContext sleeps for the given duration, or until the context is complete.
    // Returns true if the sleep completes the full duration
    func UntilContext(ctx context.Context, d time.Duration) bool {
    	return Until(ctx.Done(), d)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 14:36:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. samples/security/spire/sleep-spire.yaml

    # Sleep service
    ##################################################################################################
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: sleep
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: sleep
      labels:
        app: sleep
        service: sleep
    spec:
      ports:
      - port: 80
        name: http
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. samples/sleep/sleep-vault.yaml

    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: sleep
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: sleep
      template:
        metadata:
          labels:
            app: sleep
        spec:
          serviceAccountName: vault-citadel-sa
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
            imagePullPolicy: IfNotPresent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/time/sleep.go

    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"internal/godebug"
    	"unsafe"
    )
    
    // Sleep pauses the current goroutine for at least the duration d.
    // A negative or zero duration causes Sleep to return immediately.
    func Sleep(d Duration)
    
    var asynctimerchan = godebug.New("asynctimerchan")
    
    // syncTimer returns c as an unsafe.Pointer, for passing to newTimer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/sleep.go

    Bryan C. Mills <******@****.***> 1637609440 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 20:34:30 UTC 2021
    - 378 bytes
    - Viewed (0)
  7. src/os/exec/example_test.go

    		log.Fatal(err)
    	}
    	fmt.Printf("The date is %s\n", out)
    }
    
    func ExampleCmd_Run() {
    	cmd := exec.Command("sleep", "1")
    	log.Printf("Running command and waiting for it to finish...")
    	err := cmd.Run()
    	log.Printf("Command finished with error: %v", err)
    }
    
    func ExampleCmd_Start() {
    	cmd := exec.Command("sleep", "5")
    	err := cmd.Start()
    	if err != nil {
    		log.Fatal(err)
    	}
    	log.Printf("Waiting for command to finish...")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:18:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    		res.Proto, res.ProtoMajor, res.ProtoMinor = "", 0, 0
    	} else {
    		t.Errorf("got %q response; want %q", res.Proto, wantProto)
    	}
    	slurp, err := io.ReadAll(res.Body)
    
    	res.Body.Close()
    	res.Body = slurpResult{
    		ReadCloser: io.NopCloser(bytes.NewReader(slurp)),
    		body:       slurp,
    		err:        err,
    	}
    	for i, v := range res.Header["Date"] {
    		res.Header["Date"][i] = strings.Repeat("x", len(v))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/model_test.go

    			notWant: []string{
    				"td-1/ns/foo/sa/sleep-1",
    				"td-1/ns/foo/sa/sleep-2",
    				"td-1/ns/foo/sa/sleep-3",
    				"td-1/ns/foo/sa/sleep-4",
    			},
    		},
    		{
    			name:   "audit-http",
    			action: rbacpb.RBAC_LOG,
    			rule:   rule,
    			want: []string{
    				"td-1/ns/foo/sa/sleep-1",
    				"td-1/ns/foo/sa/sleep-2",
    				"td-1/ns/foo/sa/sleep-3",
    				"td-1/ns/foo/sa/sleep-4",
    				"td-1/ns/foo/sa/httpbin-1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. samples/sleep/README.md

    # Simple sleep service
    
    This sample consists of a simple service that does nothing but sleep.
    It's a ubuntu container with curl installed that can be used as a request source for invoking other services
    to experiment with Istio networking.
    
    To use it:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/).
    
    1. Start the sleep service:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top