Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,115 for _run (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle build
    ----
    
    === Running applications
    It is common for applications to run with the `run` task, which assembles the application and executes some script or binary:
    
    ----
    $ gradle run
    ----
    
    === Running all checks
    It is common for _all_ verification tasks, including tests and linting, to be executed using the `check` task:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    	for _, uid := range split(proxyUID) {
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--uid-owner", uid, "-j", constants.RETURN)
    	}
    	for _, gid := range split(proxyGID) {
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--gid-owner", gid, "-j", constants.RETURN)
    	}
    
    	if ownerGroupsFilter.Except {
    		for _, group := range ownerGroupsFilter.Values {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-ldap.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-minio-idp.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. docs/site-replication/run-sse-kms-object-replication.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    	pd.wseq++
    	var rg, wg *g
    	pd.publishInfo()
    	delta := int32(0)
    	rg = netpollunblock(pd, 'r', false, &delta)
    	wg = netpollunblock(pd, 'w', false, &delta)
    	if pd.rrun {
    		pd.rt.stop()
    		pd.rrun = false
    	}
    	if pd.wrun {
    		pd.wt.stop()
    		pd.wrun = false
    	}
    	unlock(&pd.lock)
    	if rg != nil {
    		netpollgoready(rg, 3)
    	}
    	if wg != nil {
    		netpollgoready(wg, 3)
    	}
    	netpollAdjustWaiters(delta)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. pkg/test/framework/suite.go

    	// Mark this suite as skipped in the context.
    	ctx.skipped = true
    
    	// Run the tests so that the golang test framework exits normally. The tests will not run because
    	// they see that this suite has been skipped.
    	_ = s.mRun(ctx)
    
    	// Return success.
    	return 0
    }
    
    func (s *suiteImpl) run() (errLevel int) {
    	tc, shutdown, err := tracing.InitializeFullBinary(s.testID)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/go/main.go

    		telemetry.Inc("go/subcommand:unknown")
    		fmt.Fprintf(os.Stderr, "go %s: unknown command\nRun 'go help%s' for usage.\n", cmdName, helpArg)
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	// Increment a subcommand counter for the subcommand we're running.
    	// Don't increment the counter for the tool subcommand here: we'll
    	// increment in the tool subcommand's Run function because we need
    	// to do the flag processing in invoke first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            then:
            1 * onStartCommand.run()
            1 * command.run()
            1 * onFinishCommand.run()
            0 * _._
    
            when:
            coordinator.runCommand(command2, "command")
    
            then:
            1 * onStartCommand.run()
            1 * command2.run()
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "runs actions when command fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top