Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for elided (0.12 sec)

  1. src/os/exec/exec.go

    	SysProcAttr *syscall.SysProcAttr
    
    	// Process is the underlying process, once started.
    	Process *os.Process
    
    	// ProcessState contains information about an exited process.
    	// If the process was started successfully, Wait or Run will
    	// populate its ProcessState when the command completes.
    	ProcessState *os.ProcessState
    
    	// ctx is the context passed to CommandContext, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/syscall/syscall_darwin.go

    	// It's not the full required semantics, but should handle the case
    	// of calling Getdirentries or ReadDirent repeatedly.
    	// It won't handle assigning the results of lseek to *basep, or handle
    	// the directory being edited underfoot.
    	skip, err := Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    		return 0, err
    	}
    
    	// We need to duplicate the incoming file descriptor
    	// because the caller expects to retain control of it, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

                    propertyMap.put(name, property);
                }
            }
    
            while (parser.getEventType() == XmlPullParser.START_TAG) {
                // update properties inside the bean, guided by the cached property map
                final BeanProperty<Object> property = propertyMap.get(Roles.camelizeName(parser.getName()));
                if (property != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/cmd/trace/gstate.go

    // blocked. They're kept separate because syscallEnd indicates the point at which the
    // goroutine is no longer executing on the resource (e.g. a proc) whereas blockedSyscallEnd
    // is the point at which the goroutine actually exited the syscall regardless of which
    // resource that happened on.
    func (gs *gState[R]) syscallEnd(ts trace.Time, blocked bool, ctx *traceContext) {
    	if !gs.syscall.active {
    		return
    	}
    	blockString := "no"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/internal/fuzz/worker.go

    			}
    			if exitErr, ok := err.(*exec.ExitError); ok && exitErr.ExitCode() == workerExitCode {
    				// Worker exited with a code indicating F.Fuzz was not called correctly,
    				// for example, F.Fail was called first.
    				return fmt.Errorf("fuzzing process exited unexpectedly due to an internal failure: %w", err)
    			}
    			// Worker exited non-zero or was terminated by a non-interrupt
    			// signal (for example, SIGSEGV) while fuzzing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		return
    	}
    
    	if tparams := fn.Type.TypeParams; tparams != nil && len(tparams.List) > 0 {
    		// Note: cmd/go/internal/load also errors about TestXXX and BenchmarkXXX functions with type parameters.
    		// We have currently decided to also warn before compilation/package loading. This can help users in IDEs.
    		at := tokenRange{tparams.Opening, tparams.Closing}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/evented.go

    		if sandboxStatus.State == runtimeapi.PodSandboxState_SANDBOX_READY {
    			return status.IPs
    		}
    	}
    
    	// For pods with no ready containers or sandboxes (like exited pods)
    	// use the old status' pod IP
    	return oldStatus.IPs
    }
    
    func (e *EventedPLEG) sendPodLifecycleEvent(event *PodLifecycleEvent) {
    	select {
    	case e.eventChannel <- event:
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	Status(ctx context.Context) (*RuntimeStatus, error)
    	// GetPods returns a list of containers grouped by pods. The boolean parameter
    	// specifies whether the runtime returns all containers including those already
    	// exited and dead containers (used for garbage collection).
    	GetPods(ctx context.Context, all bool) ([]*Pod, error)
    	// GarbageCollect removes dead containers using the specified container gc policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // contains places with the same source. If a stack occurs multiple times
      // in places, only the outer-most occurrence is kept.
      function partitionPlaces(places) {
        // Find outer-most slot per stack (used later to elide duplicate stacks).
        const stackMap = new Map();  // Map from stack index to outer-most slot#
        for (const place of places) {
          const prevSlot = stackMap.get(place.Stack);
          if (prevSlot && prevSlot <= place.Pos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/net/mockserver_test.go

    	go func() {
    		err := cmd.Wait()
    		conn.Close()
    		f.Close()
    		cmdCh <- err
    	}()
    
    	return func(tb testing.TB) {
    		err := <-cmdCh
    		if err != nil {
    			tb.Errorf("process exited with error: %v", err)
    		}
    	}, nil
    }
    
    func init() {
    	if os.Getenv("GO_NET_TEST_TRANSFER") == "" {
    		return
    	}
    	defer os.Exit(0)
    
    	f := os.NewFile(uintptr(3), "splice-test-conn")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top