Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for Adjustment (0.34 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    // along with info on call site scoring and the adjustments made to a
    // given score. Here profile is the PGO profile in use (may be
    // nil), budgetCallback is a callback that can be invoked to find out
    // the original pre-adjustment hairiness limit for the function, and
    // inlineHotMaxBudget is the constant of the same name used in the
    // inliner. Sample output lines:
    //
    // Score  Adjustment  Status  Callee  CallerPos ScoreFlags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VariantMetadata.java

         *
         * @param action the action that performs the dependencies adjustment
         */
        void withDependencies(Action<? super DirectDependenciesMetadata> action);
    
        /**
         * Register a rule that modifies the dependency constraints of this variant.
         *
         * @param action the action that performs the dependency constraints adjustment
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 06 08:10:15 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. pkg/kubelet/qos/policy.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const (
    	// KubeletOOMScoreAdj is the OOM score adjustment for Kubelet
    	KubeletOOMScoreAdj int = -999
    	// KubeProxyOOMScoreAdj is the OOM score adjustment for kube-proxy
    	KubeProxyOOMScoreAdj  int = -999
    	guaranteedOOMScoreAdj int = -997
    	besteffortOOMScoreAdj int = 1000
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/image/color/ycbcr.go

    	//
    	// Adding a rounding adjustment in the range [0, 1<<16-1] and then shifting
    	// right by 16 gives us an integer math version of the original formulae.
    	//	R = (65536*Y' +  91881 *(Cr-128)                  + adjustment) >> 16
    	//	G = (65536*Y' -  22554 *(Cb-128) - 46802*(Cr-128) + adjustment) >> 16
    	//	B = (65536*Y' + 116130 *(Cb-128)                  + adjustment) >> 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/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: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top