Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 376 for plan (0.26 sec)

  1. src/runtime/runtime-gdb_test.go

    		t.Skip("skipping gdb tests on FreeBSD; see https://golang.org/issue/29508")
    	case "aix":
    		if testing.Short() {
    			t.Skip("skipping gdb tests on AIX; see https://golang.org/issue/35710")
    		}
    	case "plan9":
    		t.Skip("there is no gdb on Plan 9")
    	}
    }
    
    func checkGdbVersion(t *testing.T) {
    	// Issue 11214 reports various failures with older versions of gdb.
    	out, err := exec.Command("gdb", "--version").CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                if (plugin.isExtensions() && !artifacts.isEmpty()) {
                    // ignore plugin descriptor parsing errors at this point
                    // these errors will reported during calculation of project build execution plan
                    try {
                        pluginDescriptor = extractPluginDescriptor(artifacts.get(0), plugin);
                    } catch (PluginDescriptorParsingException | InvalidPluginDescriptorException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

                    "structuring-software-projects_kotlin_umbrella-build.sample",
                ]
    
                // These tests cover features that the configuration cache doesn't support yet, but we plan to do that before hitting stable.
                // The tests should be removed from this list when the feature becomes supported.
                def testsForNotYetSupportedFeatures = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    ## Détails très techniques
    
    !!! warning "Attention !"
        Vous pouvez probablement ignorer cela.
    
        Ce sont des détails très poussés sur comment **FastAPI** fonctionne en arrière-plan.
    
        Si vous avez de bonnes connaissances techniques (coroutines, threads, code bloquant, etc.) et êtes curieux de comment **FastAPI** gère `async def` versus le `def` classique, cette partie est faite pour vous.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/net/lookup_test.go

    					return
    				}
    			})
    		})
    	}
    }
    
    func TestDNSErrorUnwrap(t *testing.T) {
    	if runtime.GOOS == "plan9" {
    		// The Plan 9 implementation of the resolver doesn't use the Dial function yet. See https://go.dev/cl/409234
    		t.Skip("skipping on plan9")
    	}
    	rDeadlineExcceeded := &Resolver{PreferGo: true, Dial: func(ctx context.Context, network, address string) (Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    // For example:
    //
    //	if len(os.Args) > 1 { //gdb-dbg=(hist/A,cannedInput/A) //dlv-dbg=(hist/A,cannedInput/A)
    //
    // TODO: not implemented for Delve yet, but this is the plan
    //
    // After a compiler change that causes a difference in the debug behavior, check
    // to see if it is sensible or not, and if it is, update the reference files with
    // go test debug_test.go -args -u
    // (for Delve)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. docs/fr/docs/alternatives.md

    Il offre :
    
    - Des performances vraiment impressionnantes.
    - Le support des WebSockets.
    - Le support de GraphQL.
    - Les tâches d'arrière-plan.
    - Les événements de démarrage et d'arrêt.
    - Un client de test basé sur request.
    - CORS, GZip, fichiers statiques, streaming des réponses.
    - Le support des sessions et des cookies.
    - Une couverture de test à 100 %.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    	var (
    		data []byte
    		err  error
    	)
    	if actualSumFile, ok := fsys.OverlayPath(file); ok {
    		// Don't lock go.sum if it's part of the overlay.
    		// On Plan 9, locking requires chmod, and we don't want to modify any file
    		// in the overlay. See #44700.
    		data, err = os.ReadFile(actualSumFile)
    	} else {
    		data, err = lockedfile.Read(file)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		f.StringSliceVar(&ignorePreflightErrors, "ignore-preflight-errors", ignorePreflightErrors, "flag not bound to config object")
    		f.Bool("allow-experimental-upgrades", true, "upgrade flags for plan and apply command")
    		f.Bool("skip-token-print", false, "flag not bound to config object")
    		f.StringVar(&cfgPath, "config", cfgPath, "Path to kubeadm config file")
    		if err := f.Parse(rt.args); err != nil {
    			t.Fatal(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadelf/ldelf.go

    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"io"
    	"log"
    	"strings"
    )
    
    /*
    Derived from Plan 9 from User Space's src/libmach/elf.h, elf.c
    https://github.com/9fans/plan9port/tree/master/src/libmach/
    
    	Copyright © 2004 Russ Cox.
    	Portions Copyright © 2008-2010 Google Inc.
    	Portions Copyright © 2010 The Go Authors.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top