Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 846 for Isbell (0.11 sec)

  1. src/cmd/go/internal/modfetch/codehost/shell.go

    //go:build ignore
    
    // Interactive debugging shell for codehost.Repo implementations.
    
    package main
    
    import (
    	"archive/zip"
    	"bufio"
    	"bytes"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"strings"
    	"time"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/modfetch/codehost"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go run shell.go vcs remote\n")
    	os.Exit(2)
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    	sh.printFunc(a...)
    }
    
    func (sh *Shell) printLocked(a ...any) {
    	sh.printFunc(a...)
    }
    
    // WithAction returns a Shell identical to sh, but bound to Action a.
    func (sh *Shell) WithAction(a *Action) *Shell {
    	sh2 := *sh
    	sh2.action = a
    	return &sh2
    }
    
    // Shell returns a shell for running commands on behalf of Action a.
    func (b *Builder) Shell(a *Action) *Shell {
    	if a == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. pkg/test/shell/shell.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package shell
    
    import (
    	"fmt"
    	"os/exec"
    	"strings"
    
    	"github.com/google/shlex"
    
    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("shell", "Shell execution scope")
    
    // Execute the given command.
    func Execute(combinedOutput bool, format string, args ...any) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. build/shell.sh

    Benjamin Elder <******@****.***> 1547627067 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:24:27 UTC 2019
    - 939 bytes
    - Viewed (0)
  5. Makefile

    %:
    	@$(MAKE_DOCKER) $@
    
    default:
    	@$(MAKE_DOCKER)
    
    shell:
    	@$(RUN) /bin/bash
    
    .PHONY: default shell
    
    else
    
    # If we are not in build container, we need a workaround to get environment properly set
    # Write to file, then include
    $(shell mkdir -p out)
    $(shell $(shell pwd)/common/scripts/setup_env.sh envfile > out/.env)
    include out/.env
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/groovy/quickstart/groovy/src/main/groovy/org/gradle/Person.groovy

                name = str.text.trim()
            }
            getClass().getResourceAsStream('/script.groovy').withStream {InputStream str ->
                def shell = new GroovyShell()
                shell.person = this
                shell.evaluate(str.text)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 420 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/completion.go

    	if length := len(args); length == 0 {
    		return errors.New("shell not specified")
    	} else if length > 1 {
    		return errors.New("too many arguments. expected only the shell type")
    	}
    	run, found := completionShells[args[0]]
    	if !found {
    		return errors.Errorf("unsupported shell type %q, the supported shell types are %v", args[0], GetSupportedShells())
    	}
    
    	if len(boilerPlate) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/completion_test.go

    		},
    		{
    			name:          "invalid: unsupported shell name",
    			args:          []string{"unsupported"},
    			expectedError: true,
    		},
    	}
    
    	// test all supported shells
    	shells := GetSupportedShells()
    	if len(shells) == 0 {
    		t.Errorf(shellsError)
    	}
    	for _, shell := range shells {
    		test := TestCase{
    			name: "valid: test shell " + shell,
    			args: []string{shell},
    		}
    		testCases = append(testCases, test)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 06 02:59:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

        }
    
        /**
         * Returns the list (possibly empty) of files passed as input to the shell script.
         * May not be actual paths, because they can have variable interpolations.
         */
        public List<String> getInputPaths() {
            return inputPaths;
        }
    
        /**
         * Returns the list (possibly empty) of files created as output of the shell script.
         * May not be actual paths, because they can have variable interpolations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. .github/workflows/arm-cd.yml

        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top