Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for mentioned (0.17 sec)

  1. src/cmd/go/internal/modget/get.go

    			}
    		}
    	}
    
    	reqs := modload.LoadModFile(ctx)
    	for m := range relevantMods {
    		if reqs.IsDirect(m.Path) {
    			relevantMods[m] |= direct
    		}
    	}
    
    	// Load retractions for modules mentioned on the command line and modules
    	// needed to build named packages. We care about retractions of indirect
    	// dependencies, since we might be able to upgrade away from them.
    	type modMessage struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. doc/go_mem.html

    (that is, if <i>W</i>(<i>r</i>) = <i>w</i>),
    then <i>w</i> is synchronized before <i>r</i>.
    Informally, the synchronized before relation is a subset of the implied total order
    mentioned in the previous paragraph,
    limited to the information that <i>W</i> directly observes.
    </p>
    
    <p>
    The <i>happens before</i> relation is defined as the transitive closure of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    // For performance reasons, Progs are usually bulk allocated, cached, and reused;
    // those bulk allocators should always be used, rather than new(Prog).
    //
    // The other fields not yet mentioned are for use by the back ends and should
    // be left zeroed by creators of Prog lists.
    type Prog struct {
    	Ctxt     *Link     // linker context
    	Link     *Prog     // next Prog in linked list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. docs/bucket/notifications/README.md

    ```
    NODE_ENV=webhook node thumbnail-webhook.js
    ```
    
    Thumbnailer starts running at `http://localhost:3000/`. Next, configure the MinIO server to send notifications to this URL (as mentioned in step 1) and use `mc` to set up bucket notifications (as mentioned in step 2). Then upload a JPEG image to MinIO server by
    
    ```
    mc cp ~/images.jpg myminio/images
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/build.go

    		} else {
    			haveNonMeta = true
    		}
    	}
    	if len(libname) == 0 { // non-meta packages only. use import paths
    		if len(args) == 1 && strings.HasSuffix(args[0], "/...") {
    			// Special case of "foo/..." as mentioned above.
    			arg := strings.TrimSuffix(args[0], "/...")
    			if build.IsLocalImport(arg) {
    				cwd, _ := os.Getwd()
    				bp, _ := cfg.BuildContext.ImportDir(filepath.Join(cwd, arg), build.FindOnly)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. cmd/storage-rest-server.go

    		s.writeErrorResponse(w, err)
    		return
    	}
    	defer rc.Close()
    
    	rf, ok := w.(io.ReaderFrom)
    	if ok && runtime.GOOS != "windows" {
    		// Attempt to use splice/sendfile() optimization, A very specific behavior mentioned below is necessary.
    		// See https://github.com/golang/go/blob/f7c5cbb82087c55aa82081e931e0142783700ce8/src/net/sendfile_linux.go#L20
    		// Windows can lock up with this optimization, so we fall back to regular copy.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    // addition.
    
    // Signed/unsigned is explicit with the extension ops
    // (SignExt*/ZeroExt*) and implicit as the arg to some opcodes
    // (e.g. the second argument to shifts is unsigned). If not mentioned,
    // all args take signed inputs, or don't care whether their inputs
    // are signed or unsigned.
    
    var genericOps = []opData{
    	// 2-input arithmetic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    		Set to 0 to disable external linking mode, 1 to enable it.
    	GIT_ALLOW_PROTOCOL
    		Defined by Git. A colon-separated list of schemes that are allowed
    		to be used with git fetch/clone. If set, any scheme not explicitly
    		mentioned will be considered insecure by 'go get'.
    		Because the variable is defined by Git, the default value cannot
    		be set using 'go env -w'.
    
    Additional information available from 'go env' but not read from the environment:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    Task ordering using `mustRunAfter` and `shouldRunAfter` as well as finalizers specified by `finalizedBy` should be used for task ordering within a build.
    If you happen to have cross-build task ordering defined using above mentioned methods, consider restructuring such builds and decoupling them from one another.
    
    [[master_subdirectory_root_build]]
    ==== Searching for settings files in 'master' directories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `forkEvery` — default: 0 (no maximum)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top