Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Adjustment (0.57 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        }
    
                        String adjustment = null;
    
                        if (lastSlash > -1) {
                            moduleName = moduleName.substring(lastSlash + 1);
                            adjustment = modulePath.substring(0, lastSlash);
                        }
    
                        moduleAdjustments.put(moduleName, adjustment);
                    }
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    			//
    			// This is to avoid confusing pctospadj, which sums
    			// Spadj from function entry to each PC, and shouldn't
    			// count adjustments from earlier epilogues, since they
    			// won't affect later PCs.
    			p.Spadj = int32(stacksize)
    
    		case AADDI:
    			// Refine Spadjs account for adjustment via ADDI instruction.
    			if p.To.Type == obj.TYPE_REG && p.To.Reg == REG_SP && p.From.Type == obj.TYPE_CONST {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// terms of heap objects, but it takes more than X bytes (e.g. due to fragmentation) to store
    	// X bytes worth of objects.
    	//
    	// The final adjustment (marker 3) reduces the maximum possible memory limit heap goal by
    	// memoryLimitHeapGoalPercent. As the name implies, this is to provide additional headroom in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/time/time.go

    // Go's division (like most hardware division instructions) rounds to
    // zero. We can still do those computations and then adjust the result
    // for a negative numerator, but it's annoying to write the adjustment
    // over and over. Instead, we can change to a different epoch so long
    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      max_retry_wait 30
      # Disable the limit on the number of retries (retry forever).
      disable_retry_limit
      # Use multiple threads for processing.
      num_threads 2
      use_grpc true
      # Skip timestamp adjustment as this is in a controlled environment with
      # known timestamp format. This helps with CPU usage.
      adjust_invalid_timestamps false
    </match>
    # Attach local_resource_id for 'k8s_node' monitored resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

        --search-input-text-color: #000000;
        --search-input-placeholder-color: #909090;
        /* Highlight color for active search tag target */
        --search-tag-highlight-color: #ffff00;
        /* Adjustments for icon and active background colors of copy-to-clipboard buttons */
        --copy-icon-brightness: 100%;
        --copy-button-background-color-active: rgba(168, 168, 176, 0.3);
        /* Colors for invalid tag notifications */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
Back to top