Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for Adjustment (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    		&compbasemetrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "demand_seats_high_watermark",
    			Help:           "High watermark, over last adjustment period, of demand_seats",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{priorityLevel},
    	)
    	apiserverSeatDemandAverages = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

    # /---------------------------------------------------------------------------
    # littleAdjustmentMap: (NotRequired - Default map:{})
    #
    # The various settings about a little adjustment.
    #
    # o isAvailableAddingSchemaToTableSqlName: (NotRequired - Default false)
    # o isAvailableAddingCatalogToTableSqlName: (NotRequired - Default false)
    # o isAvailableDatabaseDependency: (NotRequired - Default false)
    # o isAvailableDatabaseNativeJDBC: (NotRequired - Default false)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/documentMap.dfprop

        #   o isOverrideExistingDataFile: Does it output to existing files? (NotRequired - Default false)
        #   o isSynchronizeOriginDate: Does it synchronize origin date for date adjustment? (NotRequired - Default false)
        #
        ; loadDataReverseMap = map:{
            ; recordLimit = -1
            ; isReplaceSchemaDirectUse = true
            ; isOverrideExistingDataFile = false
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/basicInfoMap.dfprop

    # You should specify before your first generating.
    #
    # Core Properties:
    # o database: (Required)
    # o targetLanguage: (Required)
    # o targetContainer: (Required)
    # o packageBase: (Required)
    #
    # Adjustment Properties:
    # o generateOutputDirectory: (NotRequired - Default Java:'../src/main/java' CSharp:'../source')
    # o resourceOutputDirectory: (NotRequired - Default '../resources')
    # o isTableNameCamelCase: (NotRequired - Default false)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		// address space. Assume that the address has already been
    		// adjusted, so no additional base adjustment is necessary.
    		return 0, nil
    	}
    
    	switch fh.Type {
    	case elf.ET_EXEC:
    		if loadSegment == nil {
    			// Assume fixed-address executable and so no adjustment.
    			return 0, nil
    		}
    		if stextOffset == nil && start > 0 && start < 0x8000000000000000 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

     * more adapted algorithms.
     *
     */
    public class MavenModelMerger extends MavenMerger {
    
        /**
         * The hint key for the child path adjustment used during inheritance for URL calculations.
         */
        public static final String CHILD_PATH_ADJUSTMENT = "child-path-adjustment";
    
        /**
         * The context key for the artifact id of the target model.
         */
        public static final String ARTIFACT_ID = "artifact-id";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // dispatch based on an initial guess at the request’s service time
    // (duration) and then make the corresponding adjustments once the
    // request’s actual service time is known. This is similar, although
    // not exactly isomorphic, to the original paper’s adjustment by
    // `$\delta$` for the sake of promptness.
    //
    // For implementation simplicity (see below), let us use the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          # 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>
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    	if err != nil {
    		return fmt.Errorf("error opening: %w", err)
    	}
    
    	if !multFnRe.Match(content) {
    		return fmt.Errorf("MultFn not found; update regexp?")
    	}
    
    	// Users of MultFn shouldn't need adjustment, type inference should
    	// work OK.
    	content = multFnRe.ReplaceAll(content, []byte(`func MultFn[T int32|int64](a, b T) T`))
    
    	return os.WriteFile(path, content, 0644)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/runtime/time.go

    			throw("bad ts")
    		}
    
    		if t.astate.Load()&(timerModified|timerZombie) == 0 {
    			// Fast path: head of timers does not need adjustment.
    			return
    		}
    
    		t.lock()
    		updated := t.updateHeap()
    		t.unlock()
    		if !updated {
    			// Head of timers does not need adjustment.
    			return
    		}
    	}
    }
    
    // take moves any timers from src into ts
    // and then clears the timer state from src,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top