Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 248 for explainTo (0.22 sec)

  1. pkg/kubelet/container/container_gc.go

    	if resp.ContainerFilesystems == nil || resp.ImageFilesystems == nil || len(resp.ContainerFilesystems) == 0 || len(resp.ImageFilesystems) == 0 {
    		return false
    	}
    	// KEP 4191 explains that multiple filesystems for images and containers is not
    	// supported at the moment.
    	// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/4191-split-image-filesystem#comment-on-future-extensions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/toolchain_plugins.adoc

    // limitations under the License.
    
    [[toolchain_plugins]]
    = Toolchain Resolver Plugins
    
    In Gradle version 7.6 and above, Gradle provides a way to define Java toolchain auto-provisioning logic in plugins.
    This page explains how to author a toolchain resolver plugin.
    For details on how toolchain auto-provisioning interacts with these plugins, see <<toolchains.adoc#sub:download_repositories,Toolchains>>.
    
    == Provide a download URI
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/query-params-str-validations.md

    !!! tip
        For new code and whenever possible, use `Annotated` as explained above. There are multiple advantages (explained below) and no disadvantages. 🍰
    
    This is how you would use `Query()` as the default value of your function parameter, setting the parameter `max_length` to 50:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

                            public boolean isBuildable() {
                                return ! getName().contains("notBuildable");
                            }
    
                            @Override
                            public void explain(${DiagnosticsVisitor.name} visitor) {
                                visitor.node("Binary \${name} has 'notBuildable' in the name")
                            }
                        };
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousGraphVariantsFailureDescriber.java

     */
    public abstract class AmbiguousGraphVariantsFailureDescriber extends AbstractResolutionFailureDescriber<VariantAwareAmbiguousResolutionFailure> {
        private static final String AMBIGUOUS_VARIANTS_PREFIX = "Ambiguity errors are explained in more detail at ";
        private static final String AMBIGUOUS_VARIANTS_SECTION = "sub:variant-ambiguity";
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/notes-template.md

    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    > PROVIDE a screenshot or snippet illustrating the new feature, if applicable
    > LINK to the full documentation for more details
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. architecture/standards/0001-use-architectural-decision-records.md

    * To provide best practices and solutions we (as the *build tool* team) want to promote.
    * To avoid asking the same thing multiple times during code review.
    * To explain *rejected solutions*, for now, and future development, in case they are proposed again.
    
    ADRs can be written by any team.
    Like code, they should be reviewed by any other relevant teams.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/release/notes.md

    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    > PROVIDE a screenshot or snippet illustrating the new feature, if applicable
    > LINK to the full documentation for more details
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

            BinaryBuildAbility buildAbility = ((BinarySpecInternal) binary).getBuildAbility();
            if (!buildAbility.isBuildable()) {
                TreeFormatter formatter = new TreeFormatter();
                buildAbility.explain(formatter);
                builder.item(formatter.toString());
            }
        }
    
        protected void renderOwnedSourceSets(T binary, TextReportBuilder builder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[variant_attributes]]
    = Working with Variant Attributes
    
    As explained in the section on <<variant_model.adoc#sec:variant-aware-matching,variant aware matching>>, attributes give semantics to variants and are used by Gradle's dependency management engine to select the best matching variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top