Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for writing (0.15 sec)

  1. src/net/http/h2_bundle.go

    type http2responseWriterState struct {
    	// immutable within a request:
    	stream *http2stream
    	req    *Request
    	conn   *http2serverConn
    
    	// TODO: adjust buffer writing sizes based on server config, frame size updates from peer, etc
    	bw *bufio.Writer // writing to a chunkWriter{this *responseWriterState}
    
    	// mutated by http.Handler goroutine:
    	handlerHeader Header   // nil until called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    
    #### CLI Changes
    
    - [alpha] `kubectl` plugins: `kubectl` now allows binary extensibility. You can extend the default set of `kubectl` commands by writing plugins
      that provide new subcommands. Refer to the documentation for more information.
    
    - `kubectl rollout` and `rollback` now support StatefulSet.
    
    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. src/cmd/compile/internal/ssagen/ssa.go

    				if !ir.IsZero(rhs) {
    					s.Fatalf("literal with nonzero value in SSA: %v", rhs)
    				}
    				rhs = nil
    			case ir.OAPPEND:
    				rhs := rhs.(*ir.CallExpr)
    				// Check whether we're writing the result of an append back to the same slice.
    				// If so, we handle it specially to avoid write barriers on the fast
    				// (non-growth) path.
    				if !ir.SameSafeExpr(n.X, rhs.Args[0]) || base.Flag.N != 0 {
    					break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-66102`](https://youtrack.jetbrains.com/issue/KT-66102) Constructor-like function for creating AutoCloseable instances
    - [`KT-59441`](https://youtrack.jetbrains.com/issue/KT-59441) Design reading and writing future versions of Kotlin metadata
    
    #### Performance Improvements
    
    - [`KT-64361`](https://youtrack.jetbrains.com/issue/KT-64361) Optimization opportunity in Int.sign
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - `kubeadm`: speedup init by 0s or 20s. kubelet-start phase is now after etcd
      and control-plane phases, removing a race condition between kubelet looking for
      static pod manifests and kubeadm writing them. ([#117984](https://github.com/kubernetes/kubernetes/pull/117984), [@champtar](https://github.com/champtar))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 326.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    )
    
    // ContainerStateWaiting represents the waiting state of a container
    type ContainerStateWaiting struct {
    	// A brief CamelCase string indicating details about why the container is in waiting state.
    	// +optional
    	Reason string
    	// A human-readable message indicating details about why the container is in waiting state.
    	// +optional
    	Message string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

    // Only one of its members may be specified.
    // If none of them is specified, the default one is ContainerStateWaiting.
    message ContainerState {
      // Details about a waiting container
      // +optional
      optional ContainerStateWaiting waiting = 1;
    
      // Details about a running container
      // +optional
      optional ContainerStateRunning running = 2;
    
      // Details about a terminated container
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":           "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.",
    	"waiting":    "Details about a waiting container",
    	"running":    "Details about a running container",
    	"terminated": "Details about a terminated container",
    }
    
    func (ContainerState) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top