Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 537 for plan (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    import com.google.common.collect.SetMultimap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. doc/asm.html

    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    what is explained in that document, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  3. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *UpgradeConfiguration) DeepCopyInto(out *UpgradeConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.Apply.DeepCopyInto(&out.Apply)
    	out.Diff = in.Diff
    	in.Node.DeepCopyInto(&out.Node)
    	in.Plan.DeepCopyInto(&out.Plan)
    	if in.Timeouts != nil {
    		in, out := &in.Timeouts, &out.Timeouts
    		*out = new(Timeouts)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/net/net_test.go

    	defer ss.Close()
    
    	_, err = ss.Read([]byte{0})
    	if err == nil {
    		t.Fatal("Read succeeded unexpectedly")
    	} else if err == io.EOF {
    		// This happens on Plan 9, but for some reason (prior to CL 385314) it was
    		// accepted everywhere else too.
    		if runtime.GOOS == "plan9" {
    			return
    		}
    		t.Fatal("Read unexpectedly returned io.EOF after socket was abruptly closed")
    	}
    	if ne, ok := err.(Error); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/path-params.md

    De la même façon, il existe bien d'autres outils compatibles, y compris des outils de génération de code
    pour de nombreux langages.
    
    ## Pydantic
    
    Toute la validation de données est effectué en arrière-plan avec <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a>,
    dont vous bénéficierez de tous les avantages. Vous savez donc que vous êtes entre de bonnes mains.
    
    ## L'ordre importe
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    		if err != nil {
    			env = os.Environ()
    			// Note that the non-nil err is preserved despite env being overridden.
    		}
    
    		if c.Dir != "" {
    			switch runtime.GOOS {
    			case "windows", "plan9":
    				// Windows and Plan 9 do not use the PWD variable, so we don't need to
    				// keep it accurate.
    			default:
    				// On POSIX platforms, PWD represents “an absolute pathname of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *UpgradeConfiguration) DeepCopyInto(out *UpgradeConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.Apply.DeepCopyInto(&out.Apply)
    	out.Diff = in.Diff
    	in.Node.DeepCopyInto(&out.Node)
    	in.Plan.DeepCopyInto(&out.Plan)
    	if in.Timeouts != nil {
    		in, out := &in.Timeouts, &out.Timeouts
    		*out = new(Timeouts)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/net/unixsock.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"context"
    	"os"
    	"sync"
    	"syscall"
    	"time"
    )
    
    // BUG(mikio): On JS, WASIP1 and Plan 9, methods and functions related
    // to UnixConn and UnixListener are not implemented.
    
    // BUG(mikio): On Windows, methods and functions related to UnixConn
    // and UnixListener don't work for "unixgram" and "unixpacket".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. tools/docker-builder/docker.go

    )
    
    // RunDocker builds docker images using the `docker buildx bake` commands. Buildx is the
    // next-generation docker builder, and `bake` is an important part of that which allows us to
    // construct a big build plan which docker can execute in parallel. This provides order of magnitude
    // improves over a naive `docker build` flow when building many images.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. docs/fr/docs/features.md

    * Le support des **WebSockets**.
    * Le support de **GraphQL**.
    * Les <abbr title="En anglais: In-process background tasks">tâches d'arrière-plan.</abbr>
    * Des évènements de démarrages et d'arrêt.
    * Un client de test basé sur `request`
    * **CORS**, GZip, Static Files, Streaming responses.
    * Le support des **Sessions et Cookies**.
    * Une couverture de test à 100 %.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top