Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for Ordinary (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

    /**
     * Provides basic services to manage Maven plugins and their mojos. This component is kept general in its design such
     * that the plugins/mojos can be used in arbitrary contexts. In particular, the mojos can be used for ordinary build
     * plugins as well as special purpose plugins like reports.
     *
     * @since 3.0
     */
    public interface MavenPluginManager {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/internal/poll/fd_wasip1.go

    func (fd *FD) Fchdir() error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.Chdir(fd.Path)
    }
    
    // ReadDir wraps syscall.ReadDir.
    // We treat this like an ordinary system call rather than a call
    // that tries to fill the buffer.
    func (fd *FD) ReadDir(buf []byte, cookie syscall.Dircookie) (int, error) {
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	defer fd.decref()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // G. A good choice might be the service time limit (1
    // minute). Different guesses will give slightly different dynamics,
    // but any positive number can be used for G without ruining the
    // long-term behavior.
    //
    // As in ordinary fair queuing, there is a bound on divergence from
    // the ideal. In plain fair queuing the bound is one packet; in our
    // version it is C requests.
    //
    // To support efficiently making the necessary adjustments once a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/testing/fstest/mapfs.go

    	if !fs.ValidPath(name) {
    		return nil, &fs.PathError{Op: "open", Path: name, Err: fs.ErrNotExist}
    	}
    	file := fsys[name]
    	if file != nil && file.Mode&fs.ModeDir == 0 {
    		// Ordinary file
    		return &openMapFile{name, mapFileInfo{path.Base(name), file}, 0}, nil
    	}
    
    	// Directory, possibly synthesized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/syscall/syscall_openbsd.go

    // Copyright 2009,2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // OpenBSD system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

            String fileName = element.getFileName();
            if (fileName == null) {
                return false;
            }
            fileName = fileName.toLowerCase(Locale.US);
            return fileName.endsWith(".gradle") // ordinary Groovy Gradle script
                || fileName.endsWith(".gradle.kts"); // Kotlin Gradle script
        }
    
        /**
         * Whether or not deprecated features should print a full stack trace.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_netbsd.go

    // Copyright 2009,2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // NetBSD system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/runtime/cpuprof.go

    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addExtra adds the "extra" profiling events,
    // queued by addNonGo, to the profile log.
    // addExtra is called either from a signal handler on a Go thread
    // or from an ordinary goroutine; either way it can use stack
    // and has a g. The world may be stopped, though.
    func (p *cpuProfile) addExtra() {
    	// Copy accumulated non-Go profile events.
    	hdr := [1]uint64{1}
    	for i := 0; i < p.numExtra; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/PairedStatsAccumulator.java

      }
    
      /**
       * Returns a linear transformation giving the best fit to the data according to <a
       * href="http://mathworld.wolfram.com/LeastSquaresFitting.html">Ordinary Least Squares linear
       * regression</a> of {@code y} as a function of {@code x}. The count must be greater than one, and
       * either the {@code x} or {@code y} data must have a non-zero population variance (i.e. {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/syscall/exec_unix.go

    // pipe, accept on a socket, and so on. We can't reasonably grab
    // the lock across those operations.
    //
    // It is worse to inherit some file descriptors than others.
    // If a non-malicious child accidentally inherits an open ordinary file,
    // that's not a big deal. On the other hand, if a long-lived child
    // accidentally inherits the write end of a pipe, then the reader
    // of that pipe will not see EOF until that child exits, potentially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top