Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for setActive (0.13 sec)

  1. api/maven-api-settings/src/main/mdo/settings.mdo

              <version>1.0.0/1.3.0</version>
              <code>
        public boolean isActive() {
            return (getActiveString() != null) ? Boolean.parseBoolean(getActiveString()) : true;
        }
    
        public void setActive(boolean active) {
            setActiveString(String.valueOf(active));
        }
    
        public int getPort() {
            return (getPortString() != null) ? Integer.parseInt(getPortString()) : 8080;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            @Option(option = "integerValue", description = "integer value")
            public void setIntegerValue(Integer value) {
            }
    
            @Option(option = "aFlag", description = "simple flag")
            public void setActive() {
            }
    
            @Option(option = "multiString", description = "a list of strings")
            public void setStringListValue(List<String> values) {
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

        // In TF::PartitionedCallOp case, func_name and node_name are filled.
        // But in TF::XlaCallModuleOp case, node_name is `kEmptyNodeName` since
        // debugging and selective quantization of StableHLO Quantizer only uses
        // func_name for op matching.
        auto [func_name, node_name] = GetFuncNameAndNodeName(op, f_attr);
        std::string folder_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

                }
            }
        }
    
        /**
         * Exclude of selected transitive dependencies.
         *
         * Dependency graph:
         * a -> b
         * b -> c, d
         *
         * Selective exclusions are applied to dependency a->b
         */
        def "can exclude transitive dependencies (#condition)"() {
            repository {
                'a:a:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sec:refreshing-dependencies]]
    === Refreshing dependencies
    
    You can control the behavior of dependency caching for a distinct build invocation from the command line.
    Command line options are helpful for making a selective, ad-hoc choice for a single execution of the build.
    
    
    At times, the Gradle Dependency Cache can become out of sync with the actual state of the configured repositories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. architecture/environments/operator.md

    ```
    
    These rules are expressed in code in the
    [name](https://github.com/istio/operator/blob/e9097258cb4fbe59648e7da663cdad6f16927b8f/pkg/name/name.go#L131) package.
    
    ### K8s settings
    
    Rather than defining selective mappings from parameters to fields in K8s resources, the `IstioOperatorSpec` API
    contains a consistent K8s block for each Istio component. The available K8s settings are defined in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    - `false` -- the user opted out from using the feature
    - `undefined` -- the user neither opted in nor opted out from using the feature
    
    The link:{javadocPath}/org/gradle/api/configuration/BuildFeature.html#getActive--[`BuildFeature.getActive()`] status of a build feature is always defined.
    It represents the effective state of the feature in the build.
    
    When the `active` provider value is:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    		ObjectMeta: metav1.ObjectMeta{Name: saRolePrefix + "generic-garbage-collector"},
    		Rules: []rbacv1.PolicyRule{
    			// the GC controller needs to run list/watches, selective gets, and updates against any resource
    			rbacv1helpers.NewRule("get", "list", "watch", "patch", "update", "delete").Groups("*").Resources("*").RuleOrDie(),
    			eventsRule(),
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	needspinning atomic.Uint32 // See "Delicate dance" comment in proc.go. Boolean. Must hold sched.lock to set to 1.
    
    	// Global runnable queue.
    	runq     gQueue
    	runqsize int32
    
    	// disable controls selective disabling of the scheduler.
    	//
    	// Use schedEnableUser to control this.
    	//
    	// disable is protected by sched.lock.
    	disable struct {
    		// user disables scheduling of user goroutines.
    		user     bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top