Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for describeTo (0.23 sec)

  1. src/os/pidfd_linux.go

    	}
    	return h, nil
    }
    
    // _P_PIDFD is used as idtype argument to waitid syscall.
    const _P_PIDFD = 3
    
    func (p *Process) pidfdWait() (*ProcessState, error) {
    	// When pidfd is used, there is no wait/kill race (described in CL 23967)
    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// Close closes the file, releasing associated resources.
    	Close() error
    }
    
    // A Frame describes a single line in a source file.
    type Frame struct {
    	Func   string // name of function
    	File   string // source file name
    	Line   int    // line in file
    	Column int    // column in file
    }
    
    // A Sym describes a single symbol in an object file.
    type Sym struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/CategoryFilter.java

            } catch (ClassNotFoundException e) {
                throw new InvalidUserDataException(String.format("Can't load category class [%s].", className), e);
            }
        }
    
        @Override
        public final String describe() {
            StringBuilder sb = new StringBuilder();
            if (!inclusions.isEmpty()) {
                sb.append("(");
                sb.append(join(inclusions, " OR "));
                sb.append(")");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    	corev1 "k8s.io/client-go/listers/core/v1"
    	netutils "k8s.io/utils/net"
    )
    
    const defaultEtcdPathPrefix = "/registry/apiextensions.kubernetes.io"
    
    // CustomResourceDefinitionsServerOptions describes the runtime options of an apiextensions-apiserver.
    type CustomResourceDefinitionsServerOptions struct {
    	ServerRunOptions   *genericoptions.ServerRunOptions
    	RecommendedOptions *genericoptions.RecommendedOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/os/dir_unix.go

    package os
    
    import (
    	"internal/byteorder"
    	"internal/goarch"
    	"io"
    	"runtime"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    // Auxiliary information if the File describes a directory
    type dirInfo struct {
    	mu   sync.Mutex
    	buf  *[]byte // buffer for directory I/O
    	nbuf int     // length of buf; return value from Getdirentries
    	bufp int     // location of next record in buf.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/internal/fmtsort/sort.go

    //   - arrays compare each element in turn.
    //     Otherwise identical arrays compare by length.
    //   - interface values compare first by reflect.Type describing the concrete type
    //     and then by concrete value as described in the previous rules.
    func Sort(mapValue reflect.Value) SortedMap {
    	if mapValue.Type().Kind() != reflect.Map {
    		return nil
    	}
    	// Note: this code is arranged to not panic even in the presence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

     * <pre>
     * htmlDependencyReport {
     *     reports.html.outputLocation = file("build/reports/project/dependencies")
     * }
     * </pre>
     */
    @UntrackedTask(because = "We can't describe the dependency tree of all projects as input")
    public abstract class HtmlDependencyReportTask extends AbstractDependencyReportTask implements Reporting<DependencyReportContainer> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/apis.go

    	// Things will go downhill from there.
    	//
    	// This same scenario is also a potential risk if the program is
    	// running on an architecture that permits reordering of
    	// writes/stores, since the inconsistency described above could
    	// arise here. Example scenario:
    	//
    	//     func ABC() {
    	//       ...                    // prolog
    	//       if alwaysTrue() {
    	//         XYZ()                // counter update here
    	//       }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyClassPathNotationConverter.java

            this.classPathRegistry = classPathRegistry;
            this.fileCollectionFactory = fileCollectionFactory;
            this.runtimeShadedJarFactory = runtimeShadedJarFactory;
        }
    
        @Override
        public void describe(DiagnosticsVisitor visitor) {
            visitor.candidate("ClassPathNotation").example("gradleApi()");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:30:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. internal/logger/console.go

    const ConsoleLoggerTgt = "console+http"
    
    // ExitFunc is called by Fatal() class functions, by default it calls os.Exit()
    var ExitFunc = os.Exit
    
    // Logger interface describes the methods that need to be implemented to satisfy the interface requirements.
    type Logger interface {
    	json(msg string, args ...interface{})
    	quiet(msg string, args ...interface{})
    	pretty(msg string, args ...interface{})
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top