Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for processDest (0.21 sec)

  1. src/cmd/compile/internal/syntax/branches.go

    	breaks    Stmt     // *ForStmt, *SwitchStmt, *SelectStmt, or nil
    	continues *ForStmt // or nil
    	caseIndex int      // case index of immediately enclosing switch statement, or < 0
    }
    
    // blockBranches processes a block's body starting at start and returns the
    // list of unresolved (forward) gotos. parent is the immediately enclosing
    // block (or nil), ctxt provides information about the enclosing statements,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    For example you can configure your build to generate code coverage using the `application` plugin.
    
    .Using application plugin to generate code coverage data
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller_base.go

    			// Migration annotation exists but the driver isn't migrated currently
    			delete(ann, storagehelpers.AnnMigratedTo)
    			return true
    		}
    	}
    	return false
    }
    
    // volumeWorker processes items from volumeQueue. It must run only once,
    // syncVolume is not assured to be reentrant.
    func (ctrl *PersistentVolumeController) volumeWorker(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. src/runtime/os_netbsd.go

    	if ret != 0 {
    		print("runtime: failed to create new OS thread (have ", mcount()-1, " already; errno=", ret, ")\n")
    		if ret == _EAGAIN {
    			println("runtime: may need to increase max user processes (ulimit -p)")
    		}
    		throw("runtime.newosproc")
    	}
    }
    
    // mstart is the entry-point for new Ms.
    // It is written in assembly, uses ABI0, is marked TOPFRAME, and calls netbsdMstart0.
    func netbsdMstart()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

    {
       "description": "Generic dashboard for controller-runtime based processes\n(https://github.com/kubernetes-sigs/controller-runtime)\n",
       "graphTooltip": 1,
       "panels": [
          {
             "collapsed": false,
             "gridPos": {
                "h": 1,
                "w": 24,
                "x": 0,
                "y": 0
             },
             "id": 1,
             "panels": [ ],
             "title": "Process",
             "type": "row"
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/testflag.go

    	if err != nil {
    		return fmt.Errorf(`-shuffle argument must be "on", "off", or an int64: %v`, err)
    	}
    
    	*f = shuffleFlag{on: true, seed: &seed}
    	return nil
    }
    
    // testFlags processes the command line, grabbing -x and -c, rewriting known flags
    // to have "test" before them, and reading the command line for the test binary.
    // Unfortunately for us, we need to do our own flag processing because go test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/os/signal/signal_cgo_test.go

    	// must have a parent process group in the same session or mask SIGTTOU
    	// (which we do). An orphaned process group cannot receive
    	// terminal-generated SIGTSTP at all.
    	//
    	// Achieving this requires three processes total:
    	// - Top-level process: this is the main test process and creates the
    	// pseudo-terminal.
    	// - GO_TEST_TERMINAL_SIGNALS=1: This process creates a new process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    	// The fuzzer may derive new values from these, and may write new values here.
    	CacheDir string
    }
    
    // CoordinateFuzzing creates several worker processes and communicates with
    // them to test random inputs that could trigger crashes and expose bugs.
    // The worker processes run the same binary in the same directory with the
    // same environment variables as the coordinator process. Workers also run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    The Gradle dependency cache uses file-based locking to ensure that it can safely be used by multiple Gradle processes concurrently.
    The lock is held whenever the binary metadata store is being read or written, but is released for slow operations such as downloading remote artifacts.
    
    This concurrent access is only supported if the different Gradle processes can communicate together. This is usually _not the case_ for containerized builds.
    
    [[sub:cache_cleanup]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. pkg/log/config.go

    	// klog is a special case.
    	if klogVerbose() {
    		KlogScope.SetOutputLevel(DebugLevel)
    	}
    
    	return nil
    }
    
    // Sync flushes any buffered log entries.
    // Processes should normally take care to call Sync before exiting.
    func Sync() error {
    	return funcs.Load().(patchTable).sync()
    }
    
    // Close implements io.Closer.
    func Close() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top