Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for gomod (0.77 sec)

  1. src/cmd/go/alldocs.go

    //	GOHOSTOS
    //		The operating system (GOOS) of the Go toolchain binaries.
    //	GOMOD
    //		The absolute path to the go.mod of the main module.
    //		If module-aware mode is enabled, but there is no go.mod, GOMOD will be
    //		os.DevNull ("/dev/null" on Unix-like systems, "NUL" on Windows).
    //		If module-aware mode is disabled, GOMOD will be the empty string.
    //	GOTOOLDIR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		return nil, fmt.Errorf("%s: %w", args[0], err)
    	}
    	if deprecation != "" {
    		fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", rootMod.Path, modload.ShortMessage(deprecation, ""))
    	}
    	data, err := modfetch.GoMod(ctx, rootMod.Path, rootMod.Version)
    	if err != nil {
    		return nil, fmt.Errorf("%s: %w", args[0], err)
    	}
    	f, err := modfile.Parse("go.mod", data, nil)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    					},
    				}),
    
    				// 21,22: process pending delete of good parent
    				// final state: good parent in graph with correct coordinates, good children remain, no pending deletions
    				processAttemptToDelete(1),
    				assertState(state{
    					clientActions: []string{
    						"get apps/v1, Resource=deployments ns=ns1 name=deployment1", // lookup of good parent, returns 200
    					},
    					graphNodes: []*node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    			},
    			"duplicate env", "",
    		},
    		{
    			"target-ref-good",
    			&extensions.WasmPlugin{
    				Url: "http://test.com/test",
    				TargetRef: &api.PolicyTargetReference{
    					Group: gvk.KubernetesGateway.Group,
    					Kind:  gvk.KubernetesGateway.Kind,
    					Name:  "foo",
    				},
    			},
    			"", "",
    		},
    		{
    			"target-ref-good-service",
    			&extensions.WasmPlugin{
    				Url: "http://test.com/test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		xNoSemicolons      string
    		xWithSemicolons    string
    		expectParseFormErr bool
    	}{
    		{"?a=1;x=bad&x=good", "good", "bad", true},
    		{"?a=1;b=bad&x=good", "good", "good", true},
    		{"?a=1%3Bx=bad&x=good%3B", "good;", "good;", false},
    		{"?a=1;x=good;x=bad", "", "good", true},
    	}
    
    	run(t, func(t *testing.T, mode testMode) {
    		for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            if( type == 0 ) {
                if( getUncPath0().length() > 1 ) {
                    type = TYPE_FILESYSTEM;
                } else if( share != null ) {
                    // treeConnect good enough to test service type
                    connect0();
                    if( share.equals( "IPC$" )) {
                        type = TYPE_NAMED_PIPE;
                    } else if( tree.service.equals( "LPT1:" )) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    		releasem(mp)
    		return
    	}
    	newm(templateThread, nil, -1)
    	releasem(mp)
    }
    
    // templateThread is a thread in a known-good state that exists solely
    // to start new threads in known-good states when the calling thread
    // may not be in a good state.
    //
    // Many programs never need this, so templateThread is started lazily
    // when we first enter a state that might lead to running on a thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      |   be done with a regex, but we need inter-field validation and rules which could be
      |   dealt with by something like drools.
      |
      | o i18n: would be good to be able to have names/descriptions/specifications
      |   in as many languages as possible. (see MNG-3626)
      |
      | o annotation mechanism so that changes to the model can be accurately tracked.
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    					},
    					{
    						Issuer:  "inter c",
    						Subject: "inter b",
    						Type:    intermediateCertificate,
    						MutateTemplate: func(t *Certificate) {
    							t.PermittedDNSDomains = []string{"good"}
    							t.DNSNames = []string{"bad"}
    						},
    					},
    					{
    						Issuer:  "inter a",
    						Subject: "inter b",
    						Type:    intermediateCertificate,
    					},
    					{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    (RotateLeft8  x (Const64 <t> [c])) && config.PtrSize == 4 => (RotateLeft8  x (Const32 <t> [int32(c)]))
    
    // Rotating by c, then by d, is the same as rotating by c+d.
    // We're trading a rotate for an add, which seems generally a good choice. It is especially good when c and d are constants.
    // This rule is a bit tricky as c and d might be different widths. We handle only cases where they are the same width.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top