Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for unse (0.07 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/pod/mirror_client.go

    }
    
    func (mc *basicMirrorClient) getNodeUID() (types.UID, error) {
    	node, err := mc.nodeGetter.Get(mc.nodeName)
    	if err != nil {
    		return "", err
    	}
    	if node.UID == "" {
    		return "", fmt.Errorf("UID unset for node %s", mc.nodeName)
    	}
    	return node.UID, nil
    }
    
    func getHashFromMirrorPod(pod *v1.Pod) (string, bool) {
    	hash, ok := pod.Annotations[kubetypes.ConfigMirrorAnnotationKey]
    	return hash, ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 21 11:38:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. docs/de/docs/tutorial/security/get-current-user.md

        ```Python hl_lines="25"
        {!> ../../../docs_src/security/tutorial002.py!}
        ```
    
    ## Den Benutzer holen
    
    `get_current_user` wird eine von uns erstellte (gefakte) Hilfsfunktion verwenden, welche einen Token vom Typ `str` entgegennimmt und unser Pydantic-`User`-Modell zurückgibt:
    
    === "Python 3.10+"
    
        ```Python hl_lines="19-22  26-27"
        {!> ../../../docs_src/security/tutorial002_an_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:05 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #value(Map)} with a <code>null</code> argument.
         * </p>
         */
        @Incubating
        @Override
        MapProperty<K, V> unset();
    
        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #convention(Map)} with a <code>null</code> argument.
         * </p>
         */
        @Incubating
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. internal/config/dns/etcd_dns.go

    // if empty then c.prefixPath is used i.e "/skydns"
    func CoreDNSPath(prefix string) EtcdOption {
    	return func(args *CoreDNS) {
    		args.prefixPath = prefix
    	}
    }
    
    // NewCoreDNS - initialize a new coreDNS set/unset values.
    func NewCoreDNS(cfg clientv3.Config, setters ...EtcdOption) (Store, error) {
    	etcdClient, err := clientv3.New(cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	args := &CoreDNS{
    		etcdClient: etcdClient,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/options.go

    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    		"etcd peer port to use during migration operations. If unset defaults to 2380 or 2381 depending on <data-dir>.")
    	flags.StringVar(&opts.peerListenUrls, "listen-peer-urls", "",
    		"etcd --listen-peer-urls flag. If unset, fallbacks to LISTEN_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top