Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for adjustments (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

    * Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36551](https://github.com/kubernetes/kubernetes/pull/36551), [@timstclair](https://github.com/timstclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

         * @param childDirectory The directory defined in child model, may be <code>null</code>.
         * @return The path adjustment, can be empty but never <code>null</code>.
         */
        private String getChildPathAdjustment(Model child, Model parent, String childDirectory) {
            String adjustment = "";
    
            if (parent != null) {
                String childName = child.getArtifactId();
    
                /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

                    "maven-project-tests" + System.currentTimeMillis() + "/child/pom.xml");
    
            childProject.setFile(childFile);
    
            String adjustment = parentProject.getModulePathAdjustment(childProject);
    
            assertNotNull(adjustment);
    
            assertEquals("..", adjustment);
        }
    
        @Test
        void testIdentityProtoInheritance() {
            Parent parent = new Parent();
    
            parent.setGroupId("test-group");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProvider.java

        }
    
        // ===================================================================================
        //                                                                     Time Adjustment
        //                                                                     ===============
        @Override
        protected String getTimeAdjustTimeMillis() {
            return fessConfig.getTimeAdjustTimeMillis();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml

      <groupId>org.apache.maven.its.mng</groupId>
      <artifactId>parent</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <!--
      NOTE: This extends the test to check an edge case of URL adjustment which must not error out during inheritance
      if the child misses the artifactId (as to be reported by validation).
      -->
      <url>https://maven.apache.org/</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	// to writeBlocks.
    	//
    	// NB: ideally we would do a separate writeBlocks call for each
    	// section, but this would run the risk of undoing any file offset
    	// adjustments made during layout.
    	n := 0
    	for i := range dwarfp {
    		n += len(dwarfp[i].syms)
    	}
    	syms := make([]loader.Sym, 0, n)
    	for i := range dwarfp {
    		syms = append(syms, dwarfp[i].syms...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. 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)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelUrlNormalizer.java

    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    
    /**
     * 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: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top