Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,167 for command1 (0.38 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    |<<#sec:basic,basic>>|A basic, empty, Gradle build
    |<<#sec:java_application,java-application>>|A command-line application implemented in Java
    |<<#sec:java_gradle_plugin,java-gradle-plugin>>|A Gradle plugin implemented in Java
    |<<#sec:java_library,java-library>>|A Java library
    |<<#sec:kotlin_application,kotlin-application>>|A command-line application implemented in Kotlin/JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/fuzz_test.go

    	// - Fuzz common claims
    	commands := []string{
    		"./run.sh",
    		"--targeturl",
    		fmt.Sprintf("http://%s:8080/private/secret.html", server),
    		"--noproxy",
    		"--headers",
    		fmt.Sprintf("Authorization: Bearer %s", jwtToken),
    		"--mode",
    		"at",
    	}
    	stdout, stderr, err := t.Clusters().Default().PodExecCommands(pods.Items[0].Name, ns, jwtTool, commands)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    This task, if added to `build.gradle(.kts)` file in the `app` subproject directory, would be executed using the command `./gradlew :app:copyTask`.
    
    Popular built-in tasks include:
    
    - **Copy** - `Copy` is useful to copy files around.
    - **Delete** -  `Delete` is useful to delete files and directories.
    - **Exec** - `Exec` is useful to execute arbitrary O/S commands.
    - **Zip** - `Zip` is useful to bundle files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    		},
    	}
    	waypointListCmd.PersistentFlags().BoolVarP(&allNamespaces, "all-namespaces", "A", false, "List all waypoints in all namespaces")
    
    	waypointCmd := &cobra.Command{
    		Use:   "waypoint",
    		Short: "Manage waypoint configuration",
    		Long:  "A group of commands used to manage waypoint configuration",
    		Example: `  # Apply a waypoint to the current namespace
      istioctl waypoint apply
    
      # Generate a waypoint as yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/certs_test.go

    			command: "etcd-healthcheck-client",
    			Certs: []*certsphase.KubeadmCert{
    				certsphase.KubeadmCertEtcdHealthcheck(),
    			},
    		},
    		{
    			command: "admin.conf",
    			KubeconfigFiles: []string{
    				kubeadmconstants.AdminKubeConfigFileName,
    			},
    		},
    		{
    			command: "super-admin.conf",
    			KubeconfigFiles: []string{
    				kubeadmconstants.SuperAdminKubeConfigFileName,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. pkg/envoy/agent.go

    		skipDrain:                   atomic.NewBool(false),
    	}
    }
    
    // Proxy defines command interface for a proxy
    type Proxy interface {
    	// Run command with an abort channel
    	Run(<-chan error) error
    
    	// Drains the envoy process.
    	Drain(skipExit bool) error
    
    	// Cleanup command for cleans up the proxy.
    	Cleanup()
    
    	// UpdateConfig writes a new config file
    	UpdateConfig(config []byte) error
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags.go

    		}
    	}
    
    	return nil, NoCompatiblePrinterError{OutputFormat: f.OutputFormat, AllowedFormats: f.AllowedFormats()}
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    // flags related to JSON/Yaml/Name/Template printing to it
    func (f *PrintFlags) AddFlags(cmd *cobra.Command) {
    	f.JSONYamlPrintFlags.AddFlags(cmd)
    	f.NamePrintFlags.AddFlags(cmd)
    	f.TemplatePrinterFlags.AddFlags(cmd)
    
    	if f.OutputFormat != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. src/os/exec/exec_test.go

    // (This prevents stale commands from accreting if tests are removed or
    // refactored over time.)
    func registerHelperCommand(name string, f func(...string)) {
    	if helperCommands[name] != nil {
    		panic("duplicate command registered: " + name)
    	}
    	helperCommands[name] = f
    }
    
    // maySkipHelperCommand records that the test that uses the named helper command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  9. docs/en/docs/contributing.md

    Then you can serve that with the command `serve`:
    
    <div class="termy">
    
    ```console
    // Use the command "serve" after running "build-all"
    $ python ./scripts/docs.py serve
    
    Warning: this is a very simple server. For development, use mkdocs serve instead.
    This is here only to preview a site with translations already built.
    Make sure you run the build-all command first.
    Serving at: http://127.0.0.1:8008
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/pack/pack.go

    		if done {
    			break
    		}
    	}
    }
    
    // Finally, the actual commands. Each is an action.
    
    // can be modified for testing.
    var stdout io.Writer = os.Stdout
    
    // printContents implements the 'p' command.
    func (ar *Archive) printContents(e *archive.Entry) {
    	ar.extractContents1(e, stdout)
    }
    
    // tableOfContents implements the 't' command.
    func (ar *Archive) tableOfContents(e *archive.Entry) {
    	if ar.match(e) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top