Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,176 for Enabled (0.33 sec)

  1. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            def url = "${httpBuildCacheServer.uri}/"
            settingsFile << """
                buildCache {
                    local {
                        enabled = false
                    }
                    remote(org.gradle.caching.http.HttpBuildCache) {
                        enabled = true
                        url = "$url"
                        push = $push
                        $credentials
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        std::vector<std::string>* control_ret_node_names,
        bool* control_rets_updated) {
      //  overall_state equals to:
      //    Enabled if at least one pass is Enabled.
      //    Disabled if all passes are Disabled.
      //    FallbackEnabled if there are no Enabled passes and there is at least one
      //      FallbackEnabled pass.
      MlirOptimizationPassState overall_state = MlirOptimizationPassState::Disabled;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. manifests/profiles/ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
        ztunnel:
          enabled: true
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 246 bytes
    - Viewed (0)
  4. manifests/profiles/openshift-ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
          namespace: kube-system
        ztunnel:
          enabled: true
          namespace: kube-system
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 19:32:44 UTC 2024
    - 314 bytes
    - Viewed (0)
  5. pkg/log/default.go

    func Fatalf(format string, args ...any) {
    	defaultScope.Fatalf(format, args...)
    }
    
    // FatalEnabled returns whether output of messages using this scope is currently enabled for fatal-level output.
    func FatalEnabled() bool {
    	return defaultScope.FatalEnabled()
    }
    
    // Error outputs a message at error level.
    func Error(fields any) {
    	defaultScope.Error(fields)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. internal/config/notify/parse.go

    		enableEnv := target.EnvKafkaEnable
    		if k != config.Default {
    			enableEnv = enableEnv + config.Default + k
    		}
    		enabled, err := config.ParseBool(env.Get(enableEnv, kv.Get(config.Enable)))
    		if err != nil {
    			return nil, err
    		}
    		if !enabled {
    			continue
    		}
    		var brokers []xnet.Host
    		brokersEnv := target.EnvKafkaBrokers
    		if k != config.Default {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         * Returns true if assertions are enabled for the process.
         *
         * @return true if assertions are enabled, false if disabled
         */
        @Input
        boolean getEnableAssertions();
    
        /**
         * Enable or disable assertions for the process.
         *
         * @param enabled true to enable assertions, false to disable.
         */
        void setEnableAssertions(boolean enabled);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/DefaultReportContainer.java

        private NamedDomainObjectSet<T> enabled;
    
        public DefaultReportContainer(Class<? extends T> type, Instantiator instantiator, CollectionCallbackActionDecorator callbackActionDecorator) {
            super(type, instantiator, Report.NAMER, callbackActionDecorator);
    
            enabled = matching(new Spec<T>() {
                @Override
                public boolean isSatisfiedBy(T element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate_value_test.go

    `,
    		},
    		{
    			desc: "All Enabled",
    			valueYAML: `
    global:
      hub: docker.io/istio
      istioNamespace: istio-system
      tag: 1.2.3
    pilot:
      enabled: true
    gateways:
      enabled: true
      istio-ingressgateway:
        rollingMaxSurge: 4
        rollingMaxUnavailable: 1
        resources:
          requests:
            cpu: 1000m
            memory: 1G
        enabled: true
    `,
    			want: `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/doc.go

    // Check the constant Enabled to find out whether BoringCrypto is available.
    // If BoringCrypto is not available, the functions in this package all panic.
    package boring
    
    // Enabled reports whether BoringCrypto is available.
    // When enabled is false, all functions in this package panic.
    //
    // BoringCrypto is only available on linux/amd64 and linux/arm64 systems.
    const Enabled = available
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top