Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getInterval (0.26 sec)

  1. pilot/pkg/model/telemetry.go

    		if v.Disabled {
    			continue
    		}
    		allKeys.Insert(k)
    	}
    	for k := range tmm {
    		allKeys.Insert(k)
    	}
    
    	rotationInterval := getInterval(features.MetricRotationInterval, defaultMetricRotationInterval)
    	gracefulDeletionInterval := getInterval(features.MetricGracefulDeletionInterval, defaultMetricGracefulDeletionInterval)
    
    	m := make([]telemetryFilterConfig, 0, allKeys.Len())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    			input:      1 * time.Second,
    			defaultVal: 0,
    			expected:   durationpb.New(1 * time.Second),
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			actual := getInterval(tc.input, tc.defaultVal)
    			assert.Equal(t, tc.expected, actual)
    		})
    	}
    }
    
    func Test_appendApplicableTelemetries(t *testing.T) {
    	namespacedName := types.NamespacedName{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

            given:
            buildFile << """
                @Managed interface CustomManagedLSS extends LanguageSourceSet {}
                @Managed interface CustomManagedLSSInternal extends CustomManagedLSS {
                    String getInternal()
                    void setInternal(String internal)
                }
                class CustomManagedLSSPlugin extends RuleSource {
                    @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/main/webapp/js/suggestor.js

    				$textArea.val(strTmp);
    			} */
          }
        });
        $(this).blur(function() {
          if (!isMouseHover) {
            suggestor.fixList();
          }
        });
    
        //monitoring input field
        setInterval(function() {
          if (interval < 5) {
            interval = interval + 1;
          } else {
            if ($textArea.val() !== inputText) {
              if (!isFocusList && started && !suggestingSts) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. test-site/public/javascripts/suggestor.js

                }
            });
            $(this).blur(function(){
                if(!isMouseHover) {
                    suggestor.fixList();
                }
            });
    
            //テキストエリア監視
            setInterval( function() {
                if(interval < 5) {
                    interval = interval + 1;
                } else {
                    if($textArea.val() != inputText) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    _element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},C.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},C.to=function(e){var n=this;this._activeElement=t(this._element).find(y.ACTIVE_ITEM)[0];var i=this._getItemIndex(this._activeElement);if(!(e>this._ite...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
Back to top