Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for intree (0.12 sec)

  1. src/internal/poll/file_plan9.go

    // but we still want the locking semantics that fdMutex provides.
    
    // FDMutex is an exported fdMutex, only for Plan 9.
    type FDMutex struct {
    	fdmu fdMutex
    }
    
    func (fdmu *FDMutex) Incref() bool {
    	return fdmu.fdmu.incref()
    }
    
    func (fdmu *FDMutex) Decref() bool {
    	return fdmu.fdmu.decref()
    }
    
    func (fdmu *FDMutex) IncrefAndClose() bool {
    	return fdmu.fdmu.increfAndClose()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 972 bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy

        }
    
        private boolean implementedDirectly(CtClass interf, CtClass c) {
            return c.interfaces.any { it.name == interf.name }
        }
    
        private boolean addedInterfaceIsIncubatingOrInternal(CtClass interf, CtClass c) {
            return (isIncubating(interf) && !isIncubating(c)) || isInternal(interf)
        }
    
        private boolean isIncubating(CtClass c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. prow/integ-suite-kind.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Usage: ./integ-suite-kind.sh TARGET
    # Example: ./integ-suite-kind.sh test.integration.pilot.kube.presubmit
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/internal/poll/fd_unix.go

    	}
    }
    
    // Pread wraps the pread system call.
    func (fd *FD) Pread(p []byte, off int64) (int, error) {
    	// Call incref, not readLock, because since pread specifies the
    	// offset it is independent from other reads.
    	// Similarly, using the poller doesn't make sense for pread.
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	if fd.IsStream && len(p) > maxRW {
    		p = p[:maxRW]
    	}
    	var (
    		n   int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/internal/poll/fd_posix.go

    	}
    	return err
    }
    
    // Shutdown wraps syscall.Shutdown.
    func (fd *FD) Shutdown(how int) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.Shutdown(fd.Sysfd, how)
    }
    
    // Fchown wraps syscall.Fchown.
    func (fd *FD) Fchown(uid, gid int) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return ignoringEINTR(func() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:17 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/internal/poll/fd_fsync_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package poll
    
    import "syscall"
    
    // Fsync wraps syscall.Fsync.
    func (fd *FD) Fsync() error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.Fsync(fd.Sysfd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 20:27:01 UTC 2018
    - 358 bytes
    - Viewed (0)
  7. internal/net/net.go

    func GetInterfaceNetStats(interf string) (procfs.NetDevLine, error) {
    	proc, err := procfs.Self()
    	if err != nil {
    		return procfs.NetDevLine{}, err
    	}
    	netDev, err := proc.NetDev()
    	if err != nil {
    		return procfs.NetDevLine{}, err
    	}
    	ndl, ok := netDev[interf]
    	if !ok {
    		return procfs.NetDevLine{}, fmt.Errorf("%v interface not found", interf)
    	}
    	return ndl, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 17 08:14:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/internal/poll/sockopt_windows.go

    // WSAIoctl wraps the WSAIoctl network call.
    func (fd *FD) WSAIoctl(iocc uint32, inbuf *byte, cbif uint32, outbuf *byte, cbob uint32, cbbr *uint32, overlapped *syscall.Overlapped, completionRoutine uintptr) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.WSAIoctl(fd.Sysfd, iocc, inbuf, cbif, outbuf, cbob, cbbr, overlapped, completionRoutine)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:09:46 UTC 2023
    - 586 bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

            final PDEmbeddedFilesNameTreeNode efTree = namesDictionary.getEmbeddedFiles();
            if (efTree == null) {
                return;
            }
    
            try {
                final Map<String, PDComplexFileSpecification> embeddedFileNames = efTree.getNames();
                if (embeddedFileNames != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/StrictVersionParser.java

            }
            if (idx > 0) {
                String strictly = stringInterner.intern(version.substring(0, idx));
                String prefer = stringInterner.intern(version.substring(idx+2));
                return new RichVersion(null, strictly, prefer);
            }
            return new RichVersion(stringInterner.intern(version), null, null);
        }
    
        public static class RichVersion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top