Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for spreading (0.21 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    
    	// For attachable volume types, lets check if volume is attached by reading from node lister.
    	// This would avoid exponential back-off and creation of goroutine unnecessarily. We still
    	// verify status of attached volume by directly reading from API server later on.This is necessarily
    	// to ensure any race conditions because of cached state in the informer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	externalCloudProvider bool
    	// Reference to this node.
    	nodeRef *v1.ObjectReference
    
    	// Container runtime.
    	containerRuntime kubecontainer.Runtime
    
    	// Streaming runtime handles container streaming.
    	streamingRuntime kubecontainer.StreamingRuntime
    
    	// Container runtime service (needed by container runtime Start()).
    	runtimeService internalapi.RuntimeService
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/net/http/server.go

    			c.rwc.SetReadDeadline(dl)
    			c.rwc.SetWriteDeadline(dl)
    		}
    		if err := tlsConn.HandshakeContext(ctx); err != nil {
    			// If the handshake failed due to the client not speaking
    			// TLS, assume they're speaking plaintext HTTP and write a
    			// 400 response on the TLS conn's underlying net.Conn.
    			var reason string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    }
    
    func (b *Builder) loadCachedVet(a *Action) error {
    	c := cache.Default()
    	list, _, err := cache.GetBytes(c, cache.Subkey(a.actionID, "srcfiles"))
    	if err != nil {
    		return fmt.Errorf("reading srcfiles list: %w", err)
    	}
    	var srcfiles []string
    	for _, name := range strings.Split(string(list), "\n") {
    		if name == "" { // end of list
    			continue
    		}
    		if strings.HasPrefix(name, "./") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      @Test
      fun secureChunkedStreaming() {
        testSecureStreamingPost(TransferKind.CHUNKED)
      }
    
      /**
       * Users have reported problems using HTTPS with streaming request bodies.
       * http://code.google.com/p/android/issues/detail?id=12860
       */
      private fun testSecureStreamingPost(streamingMode: TransferKind) {
        server.useHttps(handshakeCertificates.sslSocketFactory())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    * Add a check for file size if the reading content returns empty ([#33976](https://github.com/kubernetes/kubernetes/pull/33976), [@jingxu97](https://github.com/jingxu97))
    * Add a retry when reading a file content from a container ([#35560](https://github.com/kubernetes/kubernetes/pull/35560), [@jingxu97](https://github.com/jingxu97))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    # a number of secure bytes desired and returns a base64 encoded string with at
    # least the requested entropy. Rather than directly reading from /dev/urandom,
    # we use uuidgen which calls getrandom(2). getrandom(2) verifies that the
    # entropy pool has been initialized sufficiently for the desired operation
    # before reading from /dev/urandom.
    #
    # ARGS:
    #   #1: number of secure bytes to generate. We round up to the nearest factor of 32.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    			// cancel at any future time, to catch other cases
    			go cancel()
    		}
    		for _, b := range s { // some operation reading from the raw memory
    			sink += b
    		}
    	}
    	if r.closemuScanHold {
    		t.Errorf("closemu held; should not be")
    	}
    
    	// There are 3 rows. We canceled after reading 2 so we expect either
    	// 2 or 3 depending on how the awaitDone goroutine schedules.
    	switch numRows {
    	case 0, 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringExtras.h"
    #include "llvm/ADT/TypeSwitch.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/Threading.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *
     * @return <code>true</code> if the file is read-only
     */
    
        public boolean canRead() throws SmbException {
            if( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for reading?
                return true;
            }
            return exists(); // try opening and catch sharing violation?
        }
    
    /**
     * Tests to see if the file this <code>SmbFile</code> represents
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top