Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for disablethp (0.27 sec)

  1. src/runtime/mem_linux.go

    	}
    
    	// Disable huge pages if the GODEBUG for it is set.
    	//
    	// Note that there are a few sysHugePage calls that can override this, but
    	// they're all for GC metadata.
    	if debug.disablethp != 0 {
    		sysNoHugePageOS(v, n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/config_test.go

    				RetryBackoff: defaultRetryBackoff,
    			},
    			wantErr: false,
    		},
    		{
    			test: "config wants disabled values",
    			config: imagePolicyWebhookConfig{
    				AllowTTL:     disableTTL,
    				DenyTTL:      disableTTL,
    				RetryBackoff: disableTTL,
    			},
    			normalizedConfig: imagePolicyWebhookConfig{
    				AllowTTL:     time.Duration(0),
    				DenyTTL:      time.Duration(0),
    				RetryBackoff: time.Duration(0),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/imagepolicy/config.go

    	minDenyTTL          = time.Duration(1) * time.Second
    	maxDenyTTL          = time.Duration(30) * time.Minute
    	useDefault          = time.Duration(0)  //sentinel for using default TTL
    	disableTTL          = time.Duration(-1) //sentinel for disabling a TTL
    )
    
    // imagePolicyWebhookConfig holds config data for imagePolicyWebhook
    type imagePolicyWebhookConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top