Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 996 for Commands (0.53 sec)

  1. 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)
  2. hack/update-vendor.sh

      # collect 'replace' directives that unconditionally pin versions (old=new@version)
      local replace_filter='(.Old.Version == null) and (.New.Version != null)'
    
      # Capture local require/replace directives before running any go commands that can modify the go.mod file
      local require_json="${local_tmp_dir}/require.json"
      local replace_json="${local_tmp_dir}/replace.json"
      go mod edit -json \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/vcs.go

    		if err != nil {
    			return nil, &VCSError{err}
    		}
    		return repo, nil
    	})
    }
    
    var vcsRepoCache par.ErrCache[vcsCacheKey, Repo]
    
    type vcsRepo struct {
    	mu lockedfile.Mutex // protects all commands, so we don't have to decide which are safe on a per-VCS basis
    
    	remote string
    	cmd    *vcsCmd
    	dir    string
    
    	tagsOnce sync.Once
    	tags     map[string]bool
    
    	branchesOnce sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/text/template/exec.go

    		return reflect.ValueOf(word.True)
    	case *parse.DotNode:
    		return dot
    	case *parse.NilNode:
    		s.errorf("nil is not a command")
    	case *parse.NumberNode:
    		return s.idealConstant(word)
    	case *parse.StringNode:
    		return reflect.ValueOf(word.Text)
    	}
    	s.errorf("can't evaluate command %q", firstWord)
    	panic("not reached")
    }
    
    // idealConstant is called to return the value of a number in a context where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. docs/sts/web-identity.md

    ## Configuring OpenID Identity Provider on MinIO
    
    Configuration can be performed via MinIO's standard configuration API (i.e. using `mc admin config set/get` commands) or equivalently via environment variables. For brevity we show only environment variables here:
    
    ```
    $ mc admin config set myminio identity_openid --env
    KEY:
    identity_openid[:name]  enable OpenID SSO support
    
    ARGS:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K 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. pkg/proxy/ipvs/README.md

    ```shell
    #before running one of the commands chosen to start a cluster:
    # curl -sS https://get.k8s.io | bash
    # wget -q -O - https://get.k8s.io | bash
    # cluster/kube-up.sh
    export KUBE_PROXY_MODE=ipvs
    ```
    
    ### Cluster Created by Kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env.go

    		case '%':
    			b.WriteString("%%")
    		case '<', '>', '|', '&', '^':
    			// These are special characters that need to be escaped with ^. See
    			// https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/set_1.
    			b.WriteByte('^')
    			b.WriteByte(x)
    		default:
    			b.WriteByte(x)
    		}
    	}
    	return b.String()
    }
    
    func printEnvAsJSON(env []cfg.EnvVar, onlyChanged bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <4> Add dependencies specific to the `functionalTest` test suite
    
    === Method 2: Use `withType`, `matching` and `configureEach`
    
    This method adds filtering commands to only apply the configuration to a subset of the test suites, as identified by name.
    
    ====
    include::sample[dir="snippets/testing/test-suite-multi-configure-each-matching/kotlin",files="build.gradle.kts[tags=multi-configure]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// Defined for testing
    	elfOpen = elf.Open
    )
    
    // binrep is an immutable representation for Binutils.  It is atomically
    // replaced on every mutation to provide thread-safe access.
    type binrep struct {
    	// Commands to invoke.
    	llvmSymbolizer      string
    	llvmSymbolizerFound bool
    	addr2line           string
    	addr2lineFound      bool
    	nm                  string
    	nmFound             bool
    	objdump             string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top