Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for msanread (0.15 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                            responseData.addMetaData(entry.getKey(), entry.getValue());
                        }
                    }
    
                    if (file.canRead()) {
                        final MimeTypeHelper mimeTypeHelper = crawlerContainer.getComponent("mimeTypeHelper");
                        if (includeContent) {
                            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                            responseData.addMetaData(entry.getKey(), entry.getValue());
                        }
                    }
    
                    if (file.canRead()) {
                        final MimeTypeHelper mimeTypeHelper = crawlerContainer.getComponent("mimeTypeHelper");
                        if (includeContent) {
                            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

    """
        }
    
        private File assertGeneratedUnixStartScript(String filename = 'sample') {
            File startScript = getGeneratedStartScript(filename)
            assert startScript.exists()
            assert startScript.canRead()
            assert startScript.canExecute()
            startScript
        }
    
        private File assertGeneratedWindowsStartScript(String filename = 'sample.bat') {
            File startScript = getGeneratedStartScript(filename)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    type mSpanState uint8
    
    const (
    	mSpanDead   mSpanState = iota
    	mSpanInUse             // allocated for garbage collected heap
    	mSpanManual            // allocated for manual management (e.g., stack allocator)
    )
    
    // mSpanStateNames are the names of the span states, indexed by
    // mSpanState.
    var mSpanStateNames = []string{
    	"mSpanDead",
    	"mSpanInUse",
    	"mSpanManual",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    			return false
    		}
    
    		// It's only at this point that the sweeper doesn't actually need to look
    		// at this arena anymore, so subtract from pagesInUse now.
    		mheap_.pagesInUse.Add(-s.npages)
    		s.state.set(mSpanDead)
    
    		// The arena is ready to be recycled. Remove it from the quarantine list
    		// and place it on the ready list. Don't add it back to any sweep lists.
    		systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	// There might be extra input waiting on the wire. Make a best effort
    	// attempt to fetch it so that it can be used in (*Conn).Read to
    	// "predict" closeNotify alerts.
    	c.rawInput.Grow(needs + bytes.MinRead)
    	_, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
    	return err
    }
    
    // sendAlertLocked sends a TLS alert message.
    func (c *Conn) sendAlertLocked(err alert) error {
    	if c.quic != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                }
                return new SmbWatchHandleImpl(openUnshared(O_RDONLY, READ_CONTROL | GENERIC_READ, DEFAULT_SHARING, 0, 1), filter, recursive);
            }
        }
    
    
        @Override
        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?
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IndexRune", Func, 0},
    		{"Join", Func, 0},
    		{"LastIndex", Func, 0},
    		{"LastIndexAny", Func, 0},
    		{"LastIndexByte", Func, 5},
    		{"LastIndexFunc", Func, 0},
    		{"Map", Func, 0},
    		{"MinRead", Const, 0},
    		{"NewBuffer", Func, 0},
    		{"NewBufferString", Func, 0},
    		{"NewReader", Func, 0},
    		{"Reader", Type, 0},
    		{"Repeat", Func, 0},
    		{"Replace", Func, 0},
    		{"ReplaceAll", Func, 12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top