Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 134 for Echo (0.08 sec)

  1. pkg/collateral/control.go

    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__istio_compopt" ]; then
    			echo builtin
    			return 0
    		fi
    	fi
    	type "$@"
    }
    __istio_compgen() {
    	local completions w
    	completions=( $(compgen "$@") ) || return $?
    	# filter by given word as prefix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "default",
    		},
    		Ports:    ports,
    		Hostname: "echo.default.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "default",
    		},
    		Ports:    ports,
    		Hostname: "echo.default.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "cert",
    		},
    		Ports:    ports,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/settings.md

        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "🚪 📋"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    func (sh *Shell) writeFile(file string, text []byte) error {
    	if cfg.BuildN || cfg.BuildX {
    		switch {
    		case len(text) == 0:
    			sh.ShowCmd("", "echo -n > %s # internal", file)
    		case bytes.IndexByte(text, '\n') == len(text)-1:
    			// One line. Use a simpler "echo" command.
    			sh.ShowCmd("", "echo '%s' > %s # internal", bytes.TrimSuffix(text, []byte("\n")), file)
    		default:
    			// Use the most general form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

                return "buildSrc property"
            }
    
            @Override
            String toString() {
                return "BuildSrc"
            }
        }
    
        final String task = "echo"
        private final Spec spec
        private final AbstractConfigurationCacheIntegrationTest test
        private final String propertyKey
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/settings.md

        // Dann könnten Sie diese mit anderen Programmen verwenden, etwa
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // Erstelle eine Umgebungsvariable MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Verwende sie mit anderen Programmen, etwa
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/settings.md

        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. internal/etag/etag_test.go

    		}
    		if equal := Equal(A, B); equal != test.Equal {
    			t.Fatalf("Test %d: got %v - want %v", i, equal, test.Equal)
    		}
    	}
    }
    
    var readerTests = []struct { // Reference values computed by: echo <content> | md5sum
    	Content string
    	ETag    ETag
    }{
    	{
    		Content: "", ETag: ETag{212, 29, 140, 217, 143, 0, 178, 4, 233, 128, 9, 152, 236, 248, 66, 126},
    	},
    	{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/net/dial_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		defer c.Close()
    
    		// Send some data to confirm that the connection is still alive.
    		const message = "echo!\n"
    		if _, err := c.Write([]byte(message)); err != nil {
    			t.Fatal(err)
    		}
    
    		// The server should echo the line, and close the connection.
    		rb := bufio.NewReader(c)
    		line, err := rb.ReadString('\n')
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_arm.go

    	B1152000 = 0x1009
    	B1500000 = 0x100a
    	B2000000 = 0x100b
    	B2500000 = 0x100c
    	B3000000 = 0x100d
    	B3500000 = 0x100e
    	B4000000 = 0x100f
    	ISIG     = 0x1
    	ICANON   = 0x2
    	XCASE    = 0x4
    	ECHO     = 0x8
    	ECHOE    = 0x10
    	ECHOK    = 0x20
    	ECHONL   = 0x40
    	NOFLSH   = 0x80
    	TOSTOP   = 0x100
    	ECHOCTL  = 0x200
    	ECHOPRT  = 0x400
    	ECHOKE   = 0x800
    	FLUSHO   = 0x1000
    	PENDIN   = 0x4000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top