Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enableFilter (0.11 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            if (selectedTags.indexOf(checkbox.value) != -1) {
                checkbox.setAttribute('checked', 'true');
            } else {
                checkbox.removeAttribute('checked')
            }
        })
    
    }
    
    function enableFilter() {
        $('[data-toggle="popover"]').popover({
            html: true,
            content: function () {
                return $('#filter-popover').html();
            }
        });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	client             corev1.CoreV1Interface
    	CheckInterval      time.Duration
    	caCertTTL          time.Duration
    	retryInterval      time.Duration
    	retryMax           time.Duration
    	dualUse            bool
    	enableJitter       bool
    }
    
    // SelfSignedCARootCertRotator automatically checks self-signed signing root
    // certificate and rotates root certificate if it is going to expire.
    type SelfSignedCARootCertRotator struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/ca.go

    			caStorageNamespace: namespace,
    			dualUse:            dualUse,
    			org:                org,
    			rootCertFile:       rootCertFile,
    			enableJitter:       enableJitter,
    			client:             client,
    		},
    	}
    
    	// always use ``istio-ca-secret` in priority, otherwise fall back to `cacerts`
    	var caCertName string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    const caNamespace = "default"
    
    // TestJitterConfiguration tests the setup of jitter
    func TestJitterConfiguration(t *testing.T) {
    	enableJitterOpts := getDefaultSelfSignedIstioCAOptions(nil)
    	enableJitterOpts.RotatorConfig.enableJitter = true
    	rotator0 := getRootCertRotator(enableJitterOpts)
    	if rotator0.backOffTime < time.Duration(0) {
    		t.Errorf("back off time should be zero or positive but got %v", rotator0.backOffTime)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top