Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 134 for Echo (0.03 sec)

  1. .github/workflows/build.yml

          - name: Enable KVM group perms
            # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
              sudo udevadm control --reload-rules
              sudo udevadm trigger --name-match=kvm
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    }
    ant.gzip(destfile:"build/file-${VERSION}.tar.gz", src: "build/file-${VERSION}.tar")
    ----
    
    For example, you execute the Ant `echo` task using the `ant.echo()` method.
    
    The attributes of the Ant task are passed as Map parameters to the method.
    Below is an example of the `echo` task:
    
    ====
    include::sample[dir="snippets/ant/useAntTask/kotlin",files="build.gradle.kts"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    In this example, the $PATH points to JDK17:
    
    ----
    ❯ echo $PATH
    /opt/homebrew/opt/openjdk@17/bin
    ----
    
    You can also set the `JAVA_HOME` environment variable to point to a specific JDK installation directory.
    This is especially useful when multiple JDKs are installed:
    
    ----
    ❯ echo %JAVA_HOME%
    C:\Program Files\Java\jdk1.7.0_80
    ----
    
    ----
    ❯ echo $JAVA_HOME
    /Library/Java/JavaVirtualMachines/jdk-16.jdk/Contents/Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/flags.go

    		"Make Waypoint proxies the default instead of sidecar proxies for all echo apps. Must be used with istio.test.ambient")
    
    	flag.BoolVar(&settingsFromCommandLine.Compatibility, "istio.test.compatibility", settingsFromCommandLine.Compatibility,
    		"Transparently deploy echo instances pointing to each revision set in `Revisions`")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. build/lib/release.sh

        # client_bins array.
        cp "${client_bins[@]/#/${LOCAL_OUTPUT_BINPATH}/${platform}/}" \
          "${release_stage}/node/bin/"
    
        cp -R "${KUBE_ROOT}/LICENSES" "${release_stage}/"
        echo "${KUBE_GIT_VERSION}" > "${release_stage}/version"
    
        cp "${RELEASE_TARS}/kubernetes-src.tar.gz" "${release_stage}/"
    
        kube::release::clean_cruft
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/istioctl_test.go

    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	commonDeployment "istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                    void addTask(ModelMap<Task> tasks, @Path("name") String name) {
                        tasks.create("echo") {
                            doLast { println "name: $name" }
                        }
                    }
                }
    
                apply type: RulePlugin
            '''
    
            then:
            succeeds "echo"
    
            and:
            output.contains("name: foo")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    (if not exist "%USERPROFILE%/.gradle" mkdir "%USERPROFILE%/.gradle") && (echo. >> "%USERPROFILE%/.gradle/gradle.properties" && echo org.gradle.daemon=false >> "%USERPROFILE%/.gradle/gradle.properties")
    ----
    
    On UNIX-like operating systems, the following Bash shell command disables the Daemon for the current user:
    
    [source,bash]
    ----
    mkdir -p ~/.gradle && echo "org.gradle.daemon=false" >> ~/.gradle/gradle.properties
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/test/framework/suite.go

    		end := time.Now()
    		scopes.Framework.Infof("=== Suite %q run time: %v ===", ctx.Settings().TestID, end.Sub(start))
    
    		ctx.RecordTraceEvent("suite-runtime", end.Sub(start).Seconds())
    		ctx.RecordTraceEvent("echo-calls", echo.GlobalEchoRequests.Load())
    		ctx.RecordTraceEvent("yaml-apply", GlobalYAMLWrites.Load())
    		traceFile := filepath.Join(ctx.Settings().BaseDir, "trace.yaml")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/cmds.go

    // commands.
    func DefaultCmds() map[string]Cmd {
    	return map[string]Cmd{
    		"cat":     Cat(),
    		"cd":      Cd(),
    		"chmod":   Chmod(),
    		"cmp":     Cmp(),
    		"cmpenv":  Cmpenv(),
    		"cp":      Cp(),
    		"echo":    Echo(),
    		"env":     Env(),
    		"exec":    Exec(func(cmd *exec.Cmd) error { return cmd.Process.Signal(os.Interrupt) }, 100*time.Millisecond), // arbitrary grace period
    		"exists":  Exists(),
    		"grep":    Grep(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top