Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for Commands (0.41 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// child, because the child itself invokes the go command to download the
    		// upload config. If the telemetryChildVar variable is still set to "1",
    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	yamlOutput    = "yaml"
    	summaryOutput = "short"
    
    	defaultProxyAdminPort = 15000
    )
    
    func ZtunnelConfig(ctx cli.Context) *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "ztunnel-config",
    		Short: "Update or retrieve current Ztunnel configuration.",
    		Long:  "A group of commands used to update or retrieve Ztunnel configuration from a Ztunnel instance.",
    		Example: `  # Retrieve summary about workload configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    // The returned Cmd's Args field is constructed from the command name
    // followed by the elements of arg, so arg should not include the
    // command name itself. For example, Command("echo", "hello").
    // Args[0] is always name, not the possibly resolved Path.
    //
    // On Windows, processes receive the whole command line as a single string
    // and do their own parsing. Command combines and quotes Args into a command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging.go

    		cfg.Attributes = &otlpcommon.KeyValueList{
    			Values: ConvertStructToAttributeKeyValues(labels.Fields),
    		}
    	}
    
    	// it's unnecessary to check proxy version here,
    	// users should add CEL/METADATA/REQ_WITHOUT_QUERY commands after all proxy upgraded to 1.23+.
    	// Otherwise, the configuration will be rejected.
    	cfg.Formatters = accessLogFormatters(format, labels)
    
    	return cfg
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Added ports autocompletion for kubectl port-foward command ([#124683](https://github.com/kubernetes/kubernetes/pull/124683), [@TessaIO](https://github.com/TessaIO)) [SIG CLI]
    - Added support for building Windows kube-proxy container image.
      A container image for kube-proxy on Windows can now be built with the command
      `make release-images KUBE_BUILD_WINDOWS=y`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. .bazelrc

    # experimental job that is build-only, i.e, we only build the test targets and
    # do not run them. By prefixing the configs with "build", we can run both
    # `bazel build` and `bazel test` commands with the same config as test configs
    # inherit from build.
    build:linux_arm64_pycpp_test_filters --test_tag_filters=-no_oss,-no_aarch64,-oss_excluded,-oss_serial,-gpu,-tpu,-benchmark-test,-v1only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        GradleExecuter createExecuter() {
            new GradleContextualExecuter(distribution, temporaryFolder, getBuildContext())
        }
    
        /**
         * Some integration tests need to run git commands in test directory,
         * but distributed-test-remote-executor has no .git directory so we init a "dummy .git dir".
         */
        void initGitDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top