Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,167 for command1 (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r49/ToolingApiEclipseModelProjectCrossVersionSpec.groovy

               apply plugin: 'eclipse'
               import org.gradle.plugins.ide.eclipse.model.BuildCommand
    
               eclipse.project {
                   natures += ['nature.a']
                   buildCommand 'command1', argumentKey: 'arg'
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.projectNatures.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "runs actions when command is run"() {
            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "command")
    
            then:
            1 * onStartCommand.run()
            1 * command.run()
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "runs actions when more commands are run"() {
            Runnable command = Mock()
            Runnable command2 = Mock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    )
    
    // commands describes the commands accepted by pprof.
    type commands map[string]*command
    
    // command describes the actions for a pprof command. Includes a
    // function for command-line completion, the report format to use
    // during report generation, any postprocessing functions, and whether
    // the command expects a regexp parameter (typically a function name).
    type command struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. pilot/pkg/request/command.go

    package request
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"net/http"
    	"strings"
    )
    
    // Command is a wrapper for making http requests to Pilot or Envoy via a CLI command.
    type Command struct {
    	Address string
    	Client  *http.Client
    }
    
    // Do executes an http request using the specified arguments
    func (c *Command) Do(method, path, body string) error {
    	bodyBuffer := bytes.NewBufferString(body)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 02 03:58:02 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/log/command.go

    	IncludeInboundPort      = Command{"IncludeInboundPort", "include inbound port for capture"}
    	InboundCapture          = Command{"InboundCapture", "redirect inbound request to proxy"}
    	KubevirtCommand         = Command{"KubevirtCommand", "Kubevirt outbound redirect"}
    	ExcludeInterfaceCommand = Command{"ExcludeInterfaceCommand", "Excluded interface"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 15 16:33:57 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Command.java

     */
    public class Command extends Message implements Serializable {
        private final UUID identifier;
        private final byte[] token;
    
        public Command(UUID identifier, byte[] token) {
            this.identifier = identifier;
            this.token = token;
        }
    
        /**
         * Returns the authentication token for this command.
         */
        public byte[] getToken() {
            return token;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. samples/health-check/liveness-command.yaml

          - name: liveness
            image: registry.k8s.io/busybox
            args:
            - /bin/sh
            - -c
            - touch /tmp/healthy; sleep 3600
            livenessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
              initialDelaySeconds: 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 26 14:35:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. releasenotes/notes/revision-tag-command.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** `istioctl experimental revision tag` command group. Revision tags act as aliases for
        control plane revisions. Users can label their namespaces with a revision tag rather than pointing them
        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/base.go

    	Flag flag.FlagSet
    
    	// CustomFlags indicates that the command will do its own
    	// flag parsing.
    	CustomFlags bool
    
    	// Commands lists the available commands and help topics.
    	// The order here is the order in which they are printed by 'go help'.
    	// Note that subcommands are in general best avoided.
    	Commands []*Command
    }
    
    var Go = &Command{
    	UsageLine: "go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. releasenotes/notes/graudate-revision-tag-command.yaml

    apiVersion: release-notes/v2
    kind: promotion
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 17:37:59 UTC 2021
    - 171 bytes
    - Viewed (0)
Back to top