Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,334 for 3$ (0.04 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.ReplicaSet.yaml

              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
            - containerPort: 3
              hostIP: hostIPValue
              hostPort: 2
              name: nameValue
              protocol: protocolValue
            readinessProbe:
              exec:
                command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.Deployment.yaml

              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
            - containerPort: 3
              hostIP: hostIPValue
              hostPort: 2
              name: nameValue
              protocol: protocolValue
            readinessProbe:
              exec:
                command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
            - containerPort: 3
              hostIP: hostIPValue
              hostPort: 2
              name: nameValue
              protocol: protocolValue
            readinessProbe:
              exec:
                command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp -m multiport ! --dports 53,15008 -m owner --uid-owner 3 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp -m multiport ! --dports 53,15008 -m owner --uid-owner 4 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/internal/byteorder/byteorder.go

    	)
    }
    
    func BeUint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint32(b[3]) | uint32(b[2])<<8 | uint32(b[1])<<16 | uint32(b[0])<<24
    }
    
    func BePutUint32(b []byte, v uint32) {
    	_ = b[3] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v >> 24)
    	b[1] = byte(v >> 16)
    	b[2] = byte(v >> 8)
    	b[3] = byte(v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml

            successThreshold: 5
            tcpSocket:
              host: hostValue
              port: portValue
            terminationGracePeriodSeconds: 7
            timeoutSeconds: 3
          name: nameValue
          ports:
          - containerPort: 3
            hostIP: hostIPValue
            hostPort: 2
            name: nameValue
            protocol: protocolValue
          readinessProbe:
            exec:
              command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	ctx := context.Background()
    	store := newTestWatchCache(3, &cache.Indexers{})
    	defer store.Stop()
    	// In background, update the store.
    	go func() {
    		store.Add(makeTestPod("pod1", 2))
    		store.bookmarkRevision <- 3
    	}()
    
    	// list from future revision. Requires watch cache to request bookmark to get it.
    	list, resourceVersion, indexUsed, err := store.WaitUntilFreshAndList(ctx, 3, nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
Back to top