Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 194 for unpipe (0.2 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_windows.go

    	DefaultCACertPath = "C:/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "npipe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 11:33:30 UTC 2023
    - 879 bytes
    - Viewed (0)
  2. src/internal/poll/export_linux_test.go

    // Export guts for testing on linux.
    // Since testing imports os and os imports internal/poll,
    // the internal/poll tests can not be in package poll.
    
    package poll
    
    var (
    	GetPipe     = getPipe
    	PutPipe     = putPipe
    	NewPipe     = newPipe
    	DestroyPipe = destroyPipe
    )
    
    func GetPipeFds(p *SplicePipe) (int, int) {
    	return p.rfd, p.wfd
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 03:52:48 UTC 2021
    - 527 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults_windows.go

    	DefaultCACertPath = "C:/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "npipe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 03 19:15:03 UTC 2022
    - 879 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_bad_filenames.txt

    ! go get rsc.io/badfile1 rsc.io/badfile2 rsc.io/badfile3 rsc.io/badfile4 rsc.io/badfile5
    ! stderr 'unzip.*badfile1'
    stderr 'unzip.*badfile2[\\/]@v[\\/]v1.0.0.zip:.*malformed file path "☺.go": invalid char ''☺'''
    stderr 'unzip.*badfile3[\\/]@v[\\/]v1.0.0.zip: rsc.io[\\/]badfile3@v1.0.0[\\/]x\?y.go: malformed file path "x\?y.go": invalid char ''\?'''
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 01 17:38:07 UTC 2020
    - 708 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/groovy/build.gradle

            }
    // tag::artifact-transform-unzip[]
        }
    }
    // end::artifact-transform-unzip[]
    
    def usage = Attribute.of('usage', String)
    // tag::artifact-transform-registration[]
    def artifactType = Attribute.of('artifactType', String)
    
    dependencies {
        registerTransform(Unzip) {
            from.attribute(artifactType, 'jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/runtime/runtime_windows.go

    func isExistingSocket(path string) bool {
    	u, err := url.Parse(path)
    	if err != nil {
    		// should not happen, since we are trying to access known / hardcoded sockets
    		return false
    	}
    
    	// the dial path must be without "npipe://"
    	_, err = winio.DialPipe(u.Path, nil)
    	if err != nil {
    		return false
    	}
    
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. src/internal/unsafeheader/unsafeheader.go

    package unsafeheader
    
    import (
    	"unsafe"
    )
    
    // Slice is the runtime representation of a slice.
    // It cannot be used safely or portably and its representation may
    // change in a later release.
    //
    // Unlike reflect.SliceHeader, its Data field is sufficient to guarantee the
    // data it references will not be garbage collected.
    type Slice struct {
    	Data unsafe.Pointer
    	Len  int
    	Cap  int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 16:14:17 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/poll/splice_linux_test.go

    	for i := 0; i < N; i++ {
    		p, err = poll.GetPipe()
    		if err != nil {
    			t.Skipf("failed to create pipe due to error(%v), skip this test", err)
    		}
    		_, pwfd := poll.GetPipeFds(p)
    		allFDs = append(allFDs, pwfd)
    		pendingFDs.Store(pwfd, struct{}{})
    		ps = append(ps, p)
    	}
    	for _, p = range ps {
    		poll.PutPipe(p)
    	}
    	ps = nil
    	p = nil
    
    	// Exploit the timeout of "go test" as a timer for the subsequent verification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/internal/poll/sendfile_windows.go

    	defer func() {
    		TestHookDidSendFile(fd, 0, written, err, written > 0)
    	}()
    	if fd.kind == kindPipe {
    		// TransmitFile does not work with pipes
    		return 0, syscall.ESPIPE
    	}
    	if ft, _ := syscall.GetFileType(src); ft == syscall.FILE_TYPE_PIPE {
    		return 0, syscall.ESPIPE
    	}
    
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    
    	o := &fd.wop
    	o.handle = src
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // content.
      //
      // Unlike wcscmp(), this function can handle NULL argument(s).  A
      // NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
    
      // Compares two C strings, ignoring case.  Returns true iff they
      // have the same content.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top