Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for Adjustment (0.64 sec)

  1. test/fixedbugs/issue16515.go

    // license that can be found in the LICENSE file.
    
    // issue 16515: spilled Duff-adjusted address may be invalid
    
    package main
    
    import "runtime"
    
    type T [62]int // DUFFZERO with non-zero adjustment on AMD64
    
    var sink interface{}
    
    //go:noinline
    func zero(x *T) {
    	// Two DUFFZEROs on the same address with a function call in between.
    	// Duff-adjusted address will be spilled and loaded
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 29 01:09:55 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml

        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>ap</artifactId>
      <packaging>pom</packaging>
      <name>Another Parent to test multi-level URL adjustment</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/path/UrlNormalizer.java

     * under the License.
     */
    package org.apache.maven.model.path;
    
    /**
     * Normalizes a URL to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface UrlNormalizer {
    
        /**
         * Normalizes the specified URL.
         *
         * @param url The URL to normalize, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelUrlNormalizer.java

    import org.apache.maven.model.Site;
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    @Named
    @Singleton
    public class DefaultModelUrlNormalizer implements ModelUrlNormalizer {
    
        private final UrlNormalizer urlNormalizer;
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelUrlNormalizer.java

    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

    import org.apache.maven.api.services.model.ModelUrlNormalizer;
    import org.apache.maven.api.services.model.UrlNormalizer;
    
    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    @Named
    @Singleton
    public class DefaultModelUrlNormalizer implements ModelUrlNormalizer {
    
        private final UrlNormalizer urlNormalizer;
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/go/doc/headscan.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    The headscan command extracts comment headings from package files;
    it is used to detect false positives which may require an adjustment
    to the comment formatting heuristics in comment.go.
    
    Usage: headscan [-root root_directory]
    
    By default, the $GOROOT/src directory is scanned.
    */
    package main
    
    import (
    	"flag"
    	"fmt"
    	"go/doc"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 21:50:52 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/pprof/protomem.go

    // profile is 1-exp(-S/R).
    func scaleHeapSample(count, size, rate int64) (int64, int64) {
    	if count == 0 || size == 0 {
    		return 0, 0
    	}
    
    	if rate <= 1 {
    		// if rate==1 all samples were collected so no adjustment is needed.
    		// if rate<1 treat as unknown and skip scaling.
    		return count, size
    	}
    
    	avgSize := float64(size) / float64(count)
    	scale := 1 / (1 - math.Exp(-avgSize/float64(rate)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    // is true-mostly, depending on when the adjustment occurs and on the
    // compiler's input and behavior.  Once this size is approximately reached
    // GOGC is reset to 100; subsequent GCs may reduce the heap below the requested
    // size, but this function does not affect that.
    //
    // -d=gcadjust=1 enables logging of GOGC adjustment events.
    //
    // NOTE: If you think this code would help startup time in your own
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/pcln.go

    	}
    
    	if s.globalToLocal == nil {
    		s.globalToLocal = make(map[int]int)
    	}
    
    	return int32(s.addBranch(ctxt, globalIndex))
    }
    
    // pctospadj computes the sp adjustment in effect.
    // It is oldval plus any adjustment made by p itself.
    // The adjustment by p takes effect only after p, so we
    // apply the change during phase == 1.
    func pctospadj(ctxt *Link, sym *LSym, oldval int32, p *Prog, phase int32, arg interface{}) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top