Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for quoting (0.2 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

                    }
                    return Collections.singletonList("@" + argsFile.getAbsolutePath());
                }
            };
        }
    
        /**
         * Writes a set of args on a single line, escaping and quoting as required.
         */
        @Override
        public ArgWriter args(Object... args) {
            for (int i = 0; i < args.length; i++) {
                Object arg = args[i];
                if (i > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. hack/lib/golang.sh

    declare -a KUBE_TEST_PLATFORMS
    kube::golang::setup_platforms() {
      if [[ -n "${KUBE_BUILD_PLATFORMS:-}" ]]; then
        # KUBE_BUILD_PLATFORMS needs to be read into an array before the next
        # step, or quoting treats it all as one element.
        local -a platforms
        IFS=" " read -ra platforms <<< "${KUBE_BUILD_PLATFORMS}"
    
        # Deduplicate to ensure the intersection trick with kube::golang::dups
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func.go

    }
    
    // NameABI returns the function name followed by comma and the ABI number.
    // This is intended for use with GOSSAFUNC and HTML dumps, and differs from
    // the linker's "<1>" convention because "<" and ">" require shell quoting
    // and are not legal file names (for use with GOSSADIR) on Windows.
    func (f *Func) NameABI() string {
    	return FuncNameABI(f.Name, f.ABISelf.Which())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    // CommandLineToArgvW (which is the most common way). Notable exceptions are
    // msiexec.exe and cmd.exe (and thus, all batch files), which have a different
    // unquoting algorithm. In these or other similar cases, you can do the
    // quoting yourself and provide the full command line in SysProcAttr.CmdLine,
    // leaving Args empty.
    func Command(name string, arg ...string) *Cmd {
    	cmd := &Cmd{
    		Path: name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    func (b *Builder) PkgconfigCmd() string {
    	return envList("PKG_CONFIG", cfg.DefaultPkgConfig)[0]
    }
    
    // splitPkgConfigOutput parses the pkg-config output into a slice of flags.
    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      declare -r item_sep="${5:-,}"
    
      declare -a pairs # indexed array
      declare -A map # associative array
      IFS="${item_sep}" read -ra pairs <<<"${encoded}" # split on item_sep # TODO(mtaufen): try quoting this too
      for pair in "${pairs[@]}"; do
        declare key
        declare value
        IFS="${kv_sep}" read -r key value <<<"${pair}" # split on kv_sep
        map[$key]="${value}" # add to associative array
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    // Once Envoy supports client-side ALPN negotiation, this should be {"istio", "h2", "http/1.1"}.
    var ALPNInMeshH2 = pm.ALPNInMeshH2
    
    // ALPNInMeshH2WithMxc advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    	// Skip injection when host networking is enabled. The problem is
    	// that the iptables changes are assumed to be within the pod when,
    	// in fact, they are changing the routing at the host level. This
    	// often results in routing failures within a node which can
    	// affect the network provider within the cluster causing
    	// additional pod failures.
    	if podSpec.HostNetwork {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
  9. .github/CODEOWNERS

    testing/performance/                    @gradle/bt-support
    testing/smoke-test/                     @gradle/bt-support
    testing/soak/                           @gradle/bt-support
    
    # Cross-cutting architecture checks and decisions
    .github/CODEOWNERS                          @gradle/bt-architecture-council
    architecture/                               @gradle/bt-architecture-council
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            if (resolveState != null) {
                return resolveState.getId();
            }
            return componentIdentifier;
        }
    
        /**
         * Restarts all incoming edges for this component, queuing them up for processing.
         */
        public void restartIncomingEdges(ComponentState selected) {
            for (NodeState node : nodes) {
                node.restart(selected);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top