Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for unse (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSource.java

             */
            MapProperty<String, Object> getAdditionalEnvironmentVariables();
    
            /**
             * The working directory of the process. The current directory is used if unset.
             *
             * @return the working directory property
             */
            DirectoryProperty getWorkingDirectory();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Set a given project property.
         *
         * @param project the project to modify
         * @param key they property's key
         * @param value the value or {@code null} to unset the property
         */
        void setProperty(@Nonnull Project project, @Nonnull String key, @Nullable String value);
    
        @Nonnull
        Optional<Project> getExecutionProject(@Nonnull Project project);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/table.go

    func (b *tableBuilder) addRow(row string) {
    	b.rows = append(b.rows, tableTrimOuter(row))
    }
    
    type Table struct {
    	Position
    	Header []*Text
    	Align  []string // 'l', 'c', 'r' for left, center, right; 0 for unset
    	Rows   [][]*Text
    }
    
    func (t *Table) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<table>\n")
    	buf.WriteString("<thead>\n")
    	buf.WriteString("<tr>\n")
    	for i, hdr := range t.Header {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 4;
    
      // manualSelector controls generation of pod labels and pod selectors.
      // Leave `manualSelector` unset unless you are certain what you are doing.
      // When false or unset, the system pick labels unique to this job
      // and appends those labels to the pod template.  When true,
      // the user is responsible for picking unique labels and specifying
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. build/common.sh

    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    
    # Common utilities, variables and checks for all build scripts.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Unset CDPATH, having it set messes up with script import paths
    unset CDPATH
    
    USER_ID=$(id -u)
    GROUP_ID=$(id -g)
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    IFS=" " read -r -a DOCKER <<< "docker ${DOCKER_OPTS}"
    DOCKER_HOST=${DOCKER_HOST:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_trimpath.txt

    [short] skip
    
    # If GOROOT is set, 'go build -trimpath' bakes that into the resulting
    # binary. Explicitly unset it here.
    env GOROOT=
    
    # Set up two identical directories that can be used as GOPATH.
    env GO111MODULE=on
    mkdir $WORK/a/src/paths $WORK/b/src/paths
    cp paths.go $WORK/a/src/paths
    cp paths.go $WORK/b/src/paths
    cp overlay.json $WORK/a/src/paths
    cp overlay.json $WORK/b/src/paths
    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/net/http/cgi/child.go

    	remotePort, _ := strconv.Atoi(params["REMOTE_PORT"]) // zero if unset or invalid
    	r.RemoteAddr = net.JoinHostPort(params["REMOTE_ADDR"], strconv.Itoa(remotePort))
    
    	return r, nil
    }
    
    // Serve executes the provided [Handler] on the currently active CGI
    // request, if any. If there's no current CGI environment
    // an error is returned. The provided handler may be nil to use
    // [http.DefaultServeMux].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. cluster/gce/config-common.sh

    # Version for csi-proxy
    export CSI_PROXY_VERSION="${CSI_PROXY_VERSION:-v1.1.1-gke.0}"
    # csi-proxy additional flags, there are additional flags that cannot be unset in k8s-node-setup.psm1
    export CSI_PROXY_FLAGS="${CSI_PROXY_FLAGS:-}"
    # Storage path for auth-provider-gcp binaries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/join.go

    		}
    	}
    
    	// if a file or URL from which to load cluster information was not provided, unset the Discovery.File object
    	if len(opt.externalcfg.Discovery.File.KubeConfigPath) == 0 {
    		opt.externalcfg.Discovery.File = nil
    	}
    
    	// if an APIServerEndpoint from which to retrieve cluster information was not provided, unset the Discovery.BootstrapToken object
    	if len(args) == 0 {
    		opt.externalcfg.Discovery.BootstrapToken = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	"istio.io/istio/pkg/workloadapi/security"
    )
    
    const (
    	staticStrictPolicyName = "istio_converted_static_strict" // use '_' character since those are illegal in k8s names
    )
    
    func (a *index) Policies(requested sets.Set[model.ConfigKey]) []model.WorkloadAuthorization {
    	// TODO: use many Gets instead of List?
    	cfgs := a.authorizationPolicies.List()
    	l := len(cfgs)
    	if len(requested) > 0 {
    		l = len(requested)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top