Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 221 for explainTo (0.14 sec)

  1. pkg/volume/csi/csi_mounter.go

    	return false
    }
    
    // getFSGroupPolicy returns if the CSI driver supports a volume in the given mode.
    // An error indicates that it isn't supported and explains why.
    func (c *csiMountMgr) getFSGroupPolicy() (storage.FSGroupPolicy, error) {
    	// Retrieve CSIDriver. It's not an error if that isn't
    	// possible (we don't have the lister if CSIDriverRegistry is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  2. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

    /*
     * Written by Doug Lea and Martin Buchholz with assistance from
     * members of JCP JSR-166 Expert Group and released to the public
     * domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleTest.java?revision=1.8
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `version`: optional. The version constraint of the dependency.
    - `excludes`: optional. Defines the exclusions that apply to this dependency. 
    - `reason`: optional. A explanation why the dependency is used. Can typically be used to explain why a specific version is requested.
    - `attributes`: optional. If set, attributes will override the consumer attributes during dependency resolution for this specific dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

            );
            return groovySourceSet.getGroovy();
        }
    
        private static void configureLibraryElements(SourceSet sourceSet, ConfigurationContainer configurations, ObjectFactory objectFactory) {
            // Explain that Groovy, for compile, also needs the resources (#9872)
            configurations.getByName(sourceSet.getCompileClasspathConfigurationName()).attributes(attrs ->
                attrs.attribute(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/extra/AtomicDoubleArray.java?revision=1.5
     * (Modified to adapt to guava coding conventions and
     * to use AtomicLongArray instead of sun.misc.Unsafe)
     */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/security/oauth2-scopes.md

    It will have a property `scopes` with a list containing all the scopes required by itself and all the dependencies that use this as a sub-dependency. That means, all the "dependants"... this might sound confusing, it is explained again later below.
    
    The `security_scopes` object (of class `SecurityScopes`) also provides a `scope_str` attribute with a single string, containing those scopes separated by spaces (we are going to use it).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    for nosplit functions to run in and the linker checks that any static
    chain of nosplit function calls cannot exceed this bound.
    
    Any function with a `//go:nosplit` annotation should explain why it is
    nosplit in its documentation comment.
    
    Error handling and reporting
    ============================
    
    Errors that can reasonably be recovered from in user code should use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. docs/logging/README.md

    # MinIO Logging Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    This document explains how to configure MinIO server to log to different logging targets.
    
    ## Log Targets
    
    MinIO supports currently two target types
    
    - console
    - http
    
    ### Logging Console Target
    
    Console target is on always and cannot be disabled.
    
    ### Logging HTTP Target
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                            formatter.node(binary.getDisplayName());
                            formatter.startChildren();
                            binary.getBuildAbility().explain(formatter);
                            formatter.endChildren();
                        }
                        formatter.endChildren();
                        throw new GradleException(formatter.toString());
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                                // and here, they do not define any "usage". However, they do define a "status". The selected variant
                                // is target to the metadata rule, which explains we find the "format" attribute here
                                expectedTargetVariant = expectedVariant
                                artifact classifier: 'variant1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top