Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,569 for Commands (0.12 sec)

  1. hack/verify-cli-conventions.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks the description format of help message of kubectl command
    # is valid or not. And this checking is done for all kubectl sub-commands.
    # Usage: `hack/verify-cli-conventions.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. releasenotes/notes/otel-accesslog-formatter.yaml

    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 02:59:27 UTC 2024
    - 322 bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/prog.go

    	// writeMu serializes writing to the child process.
    	// It must never be held at the same time as mu.
    	writeMu sync.Mutex
    }
    
    // ProgCmd is a command that can be issued to a child process.
    //
    // If the interface needs to grow, we can add new commands or new versioned
    // commands like "get2".
    type ProgCmd string
    
    const (
    	cmdGet   = ProgCmd("get")
    	cmdPut   = ProgCmd("put")
    	cmdClose = ProgCmd("close")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. ci/official/utilities/cleanup_docker.sh

    cat <<EOF
    IMPORTANT: These tests ran under docker. This script does not clean up the
    container for you! You can delete the container with:
    
    $ docker rm -f tf
    
    You can also execute more commands within the container with e.g.:
    
    $ docker exec tf bazel clean
    $ docker exec -it tf bash
    EOF
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:26:29 UTC 2023
    - 998 bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/interface.go

    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    // Dependencies is used as abstraction for the commands used from the operating system
    type Dependencies interface {
    	// Run runs a command
    	Run(cmd constants.IptablesCmd, iptVer *IptablesVersion, stdin io.ReadSeeker, args ...string) error
    	// RunQuietlyAndIgnore runs a command quietly and ignores errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-android-app.sample.conf

    commands: [{
        executable: gradle
        # There's a flaky stacktrace: java.io.FileNotFoundException: https://dl.google.com/android/repository/sys-img/android-desktop/sys-img2-1.xml
        #  at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1896) ...
        args: build -x lint -x lintVitalRelease "-Dorg.gradle.sampletest.noStackTraceCheck=true"
        execution-subdirectory: android-app
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 519 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

                // 2. remove presence from registry
                // 3. stop accepting new connections
                // 4. wait for commands in progress to finish (except for abandoned long running commands, like running a build)
    
                CompositeStoppable.stoppable(stateCoordinator, registryUpdater, connector, connectionHandler).stop();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/android-application/tests/buildTask.sample.conf

    commands: [{
        executable: gradle
        args: "build -x lint -x lintVitalRelease -Dorg.gradle.configuration-cache.internal.task-execution-access-pre-stable=true"
        # The following deprecation is coming from the Android plugin
        #> Task :app:javaPreCompileDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 643 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/old_tidy_toolchain.txt

    # Commands in an old module with no go line and no toolchain line,
    # or with only a go line, should succeed.
    # (They should not fail due to the go.mod not being tidy.)
    
    # No go line, no toolchain line.
    go list
    
    # Old go line, no toolchain line.
    go mod edit -go=1.16
    go list
    
    go mod edit -go=1.20
    go list
    
    # New go line, no toolchain line, using same toolchain.
    env TESTGO_VERSION=1.21
    go mod edit -go=1.21
    go list
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 615 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

            }
        }
    
        private String bash(String commands) {
            return execute(["bash"] as Object[], new ByteArrayInputStream(commands.getBytes()))
        }
    
        private String execute(Object[] commandLine, InputStream input) {
            def output = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top