Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for run1 (0.23 sec)

  1. doc/go_spec.html

    a string that is the concatenation of the individual rune values
    converted to strings.
    
    <pre>
    string([]rune{0x767d, 0x9d6c, 0x7fd4})   // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    string([]rune{})                         // ""
    string([]rune(nil))                      // ""
    
    type runes []rune
    string(runes{0x767d, 0x9d6c, 0x7fd4})    // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    
    type myRune rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * fuse daemons for GlusterFS and CephFS are now run in their own systemd scope when Kubernetes runs on a system with systemd. ([#49640](https://github.com/kubernetes/kubernetes/pull/49640), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string host = 2;
    }
    
    // ExecAction describes a "run in container" action.
    message ExecAction {
      // Command is the command line to execute inside the container, the working directory for the
      // command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
      // not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_EventSource
    }
    
    var map_ExecAction = map[string]string{
    	"":        "ExecAction describes a \"run in container\" action.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// +optional
    	Host string
    }
    
    // ExecAction describes a "run in container" action.
    type ExecAction struct {
    	// Command is the command line to execute inside the container, the working directory for the
    	// command  is root ('/') in the container's filesystem.  The command is simply exec'd, it is
    	// not run inside a shell, so traditional shell instructions ('|', etc) won't work.  To use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    			expectError: true,
    		}},
    	}}
    
    	for _, otc := range testCases {
    		t.Run(otc.name, func(t *testing.T) {
    			storage, _, server := newStorage(t, otc.clusterFamilies)
    			defer server.Terminate(t)
    			defer storage.Store.DestroyFunc()
    
    			for _, itc := range otc.cases {
    				t.Run(itc.name, func(t *testing.T) {
    					// This test is ONLY ExternalName services.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                  # so that it outlives the init container.
                  mountPropagation: Bidirectional
                - mountPath: /var/run/calico
                  name: var-run-calico
                  # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host
                  # so that it outlives the init container.
                  mountPropagation: Bidirectional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    	// After the PREROUTING rules run, pending DNATs are processed (which would affect
    	// the destination IP that later rules match against).
    	if len(tracer.outputs) != 0 {
    		destIP = strings.Split(tracer.outputs[0], ":")[0]
    	}
    
    	// Now the filter rules get run; exactly which ones depend on whether this is an
    	// inbound, outbound, or intra-host packet, which we don't know. So we just run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    type http2clientConnReadLoop struct {
    	_  http2incomparable
    	cc *http2ClientConn
    }
    
    // readLoop runs in its own goroutine and reads and dispatches frames.
    func (cc *http2ClientConn) readLoop() {
    	cc.t.markNewGoroutine()
    	rl := &http2clientConnReadLoop{cc: cc}
    	defer rl.cleanup()
    	cc.readerErr = rl.run()
    	if ce, ok := cc.readerErr.(http2ConnectionError); ok {
    		cc.wmu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top