Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,176 for Enabled (0.28 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	a := types.NewAlias(tname, rhs)
    	// TODO(go.dev/issue/65455): Remove kludgy workaround to set a.actual as a side-effect.
    	Unalias(a)
    	return a
    }
    
    // Enabled reports whether [NewAlias] should create [types.Alias] types.
    //
    // This function is expensive! Call it sparingly.
    func Enabled() bool {
    	// The only reliable way to compute the answer is to invoke go/types.
    	// We don't parse the GODEBUG environment variable, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. internal/config/compress/compress.go

    	}
    
    	compress := env.Get(EnvCompressState, kvs.Get(config.Enable))
    	if compress == "" {
    		compress = env.Get(EnvCompress, "")
    	}
    	cfg.Enabled, err = config.ParseBool(compress)
    	if err != nil {
    		// Parsing failures happen due to empty KVS, ignore it.
    		if kvs.Empty() {
    			return cfg, nil
    		}
    		return cfg, err
    	}
    	if !cfg.Enabled {
    		return cfg, nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/FluidDependenciesResolveInterceptor.groovy

    /**
     * Runs tests with fluid dependencies enabled and disabled: when fluid dependencies are enabled, any configuration that
     * is a task input is resolved when constructing the task graph.
     * Test classes that use this runner will have tests run twice, with and without fluid dependencies enabled.
     */
    @CompileStatic
    class FluidDependenciesResolveInterceptor extends BehindFlagFeatureInterceptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. internal/config/identity/tls/config.go

    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/env"
    )
    
    const (
    	// EnvIdentityTLSEnabled is an environment variable that controls whether the X.509
    	// TLS STS API is enabled. By default, if not set, it is enabled.
    	EnvIdentityTLSEnabled = "MINIO_IDENTITY_TLS_ENABLE"
    
    	// EnvIdentityTLSSkipVerify is an environment variable that controls whether
    	// MinIO verifies the client certificate present by the client
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pkg/kubelet/util/swap/swap_util.go

    // gets /proc/swaps's content as an input, returns true if swap is enabled.
    func isSwapOnAccordingToProcSwaps(procSwapsContent []byte) bool {
    	procSwapsContent = bytes.TrimSpace(procSwapsContent) // extra trailing \n
    	procSwapsStr := string(procSwapsContent)
    	procSwapsLines := strings.Split(procSwapsStr, "\n")
    
    	// If there is more than one line (table headers) in /proc/swaps then swap is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/types.go

    	PercentageOfNodesToScore *int32
    
    	// Plugins specify the set of plugins that should be enabled or disabled.
    	// Enabled plugins are the ones that should be enabled in addition to the
    	// default plugins. Disabled plugins are any of the default plugins that
    	// should be disabled.
    	// When no enabled or disabled plugin is specified for an extension point,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

        }
    
        def "explicitly sets daemon usage if daemon system property is specified - #enabled"() {
            when:
            converter.convert((DaemonBuildOptions.DaemonOption.GRADLE_PROPERTY): enabled.toString(), params)
    
            then:
            params.enabled == propertyValue
    
            where:
            enabled | propertyValue
            true    | true
            false   | false
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/GradleEnterprisePluginLegacyContactPointFixture.groovy

        void assertDisabled(String output, boolean disabled) {
            assert output.contains("buildScan.disabled: $disabled")
        }
    
        void assertEnabled(String output, boolean enabled) {
            assert output.contains("buildScan.enabled: $enabled")
        }
    
        void assertUnsupportedMessage(String output, String unsupported) {
            assert output.contains("buildScan.unsupportedMessage: $unsupported")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pom.xml

    	</build>
    	<repositories>
    		<repository>
    			<id>snapshots.oss.sonatype.org</id>
    			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
    			<releases>
    				<enabled>false</enabled>
    			</releases>
    			<snapshots>
    				<enabled>true</enabled>
    			</snapshots>
    		</repository>
    	</repositories>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. cni/pkg/util/podutil_test.go

    	}
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{
    			name: "ambient mode enabled for namespace",
    			args: args{
    				namespace: namespaceWithAmbientEnabledLabel,
    				pod:       unlabelledPod,
    			},
    			want: true,
    		},
    		{
    			name: "ambient mode enabled for pod",
    			args: args{
    				namespace: unlabelledNamespace,
    				pod:       podWithAmbientEnabledLabel,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top