Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 288 for mentioned (0.58 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	}
    	// this is the empty scope
    	return ""
    }
    
    // CleanListScope computes the request scope for metrics.
    //
    // Note that normally we would use CleanScope for computation.
    // But due to the same reasons mentioned in determineRequestNamespaceAndName we cannot.
    func CleanListScope(ctx context.Context, opts *metainternalversion.ListOptions) string {
    	namespace, name := determineRequestNamespaceAndName(ctx, opts)
    	if len(name) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * Avoid dependencies that pull in legacy libraries.
    * Upgrade the dependency version if the new version no longer pulls in a legacy library.
    * Downgrade to `google-collections`. It's not recommended, just mentioned for completeness.
    
    Traditional approaches work but they are not general enough.
    For example, an organisation wants to resolve the `google-collections` -> `guava` conflict resolution problem in all projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    			// over: T of the algorithm is T[i:] for us. That means that T1 in
    			// Step 2 (T mod 2^_W) is simply T[i]. k0 in Step 3 is our m0inv.
    			Y := T[i] * m.m0inv
    
    			// Step 4 and 5 add Y × m to T, which as mentioned above is stored
    			// at T[i:]. The two carries (from a × d and Y × m) are added up in
    			// the next word T[n+i], and the carry bit from that addition is
    			// brought forward to the next iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top