Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 912 for consistency (0.32 sec)

  1. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Doing this provides the following specific benefits:
    - **Reduce the API surface** - We no longer need to maintain two methods.
    - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL.
    - **Reduce the size of the Gradle distribution** - We no longer need to carry multiple standard libraries for different languages.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. manifests/charts/base/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         *
         * <p>Defaults to the name of the signature {@link #getFile() file}.
         *
         * @return The name. May be {@code null} if unknown at this time.
         *
         * FIXME Nullability consistency with superclass.
         */
        @Override
        @Internal
        public String getName() {
            return name != null ? name : defaultName();
        }
    
        @Nullable
        private String defaultName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

        public void mergeXmlWorkspace(Workspace xmlWorkspace) {
            iws.getBeforeMerged().execute(xmlWorkspace);
    
            //we don't merge anything in the iws, yet.
            //I kept the logic for the sake of consistency
            // and compatibility with pre M4 ways of configuring IDEA information.
    
            iws.getWhenMerged().execute(xmlWorkspace);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

         * When re-creating an object due to loading from the configuration cache,
         * {@link #idRecreated()} must be called before the object is re-created to make sure the consistency of the ids.
         *
         * @throws IllegalStateException if an id has already been loaded.
         */
        public long createId() {
            long newId = sequence.updateAndGet(it -> it == USED_ASSIGNED_ID_MARKER ? it : it + 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/test/framework/features/README.md

    ## Adding New Feature Constants
    
    For consistency, features must be registered in [features.yaml](features.yaml), or your test will fail.  Each entry in this file will be equivalent to a dot delimited feature label.  For instance:
    
    ```yaml
        usability:
          observability:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stdout '^'$WORK'[/\\]auto[/\\]replacement-version$'
    
    # A 'go 1.14' directive in the main module's go.mod file should enable
    # -mod=vendor by default, along with stronger checks for consistency
    # between the go.mod file and vendor/modules.txt.
    # A 'go 1.13' vendor/modules.txt file is not usually sufficient
    # to pass those checks.
    go mod edit -go=1.14
    
    ! go list -f {{.Dir}} -tags tools all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/cmd/root.go

    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top