Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 244 for Configurable (0.19 sec)

  1. src/main/webapp/js/clipboard.min.js

    Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},i=function(){function o(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(t,e,n){return e&&o(t.prototype,e),n&&o(t,n),t}}(),a=o(n(1)),c=o(n(3)),u=o(n(4));function o(t){return t&&t.__esModule?t:{default:t}}var l=function(t){function o(t...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat May 28 04:16:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftApplicationPlugin.java

                                .findFirst()
                                .orElse(null));
            }));
    
            project.afterEvaluate(p -> {
                // TODO: make build type configurable for components
                Dimensions.applicationVariants(application.getModule(), application.getTargetMachines(), objectFactory, attributesFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. internal/bucket/bandwidth/reader.go

    type BucketOptions struct {
    	Name           string
    	ReplicationARN string // This is optional, and not mandatory.
    }
    
    // MonitorReaderOptions provides configurable options for monitor reader implementation.
    type MonitorReaderOptions struct {
    	BucketOptions
    	HeaderSize int
    }
    
    // Read implements a throttled read
    func (r *MonitoredReader) Read(buf []byte) (n int, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/routes/flags.go

    <head>
    <title>/debug/flags/</title>
    </head>
    <body>
    /debug/flags/<br>
    <br>
    flags:<br>
    <table>
    {{range .}}
    <tr>{{.Flag}}<br>
    {{end}}
    </table>
    <br>
    full flags configurable<br>
    </body>
    </html>
    `))
    
    type debugFlag struct {
    	Flag string
    }
    
    func (f DebugFlags) addFlag(flag string) {
    	lock.Lock()
    	defer lock.Unlock()
    	registeredFlags[flag] = debugFlag{flag}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppApplicationPlugin.java

            application.getBinaries().whenElementKnown(binary -> {
                application.getMainPublication().addVariant(binary);
            });
    
            project.afterEvaluate(p -> {
                // TODO: make build type configurable for components
                Dimensions.applicationVariants(application.getBaseName(), application.getTargetMachines(), objectFactory, attributesFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

        @Override
        boolean isTestEnabled(AbstractMultiTestInterceptor.TestDetails testDetails) {
            if (!gradle.daemonIdleTimeoutConfigurable && OperatingSystem.current().isWindows()) {
                // Older daemon don't have configurable ttl and they hung for 3 hours afterwards.
                // This is a real problem on windows due to eager file locking and continuous CI failures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/util/ConfigureUtilTest.groovy

            then:
            def e = thrown(MissingPropertyException)
            e.type == Bean
            e.property == 'unknown'
        }
    
        static class TestConfigurable implements Configurable {
            def props = [:]
    
            TestConfigurable configure(Closure closure) {
                props.with(closure)
                this
            }
        }
    
        def testConfigurableAware() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractValidatingProperty.java

        private static boolean hasConfigurableValue(@Nullable Object value) {
            // TODO We should check the type of the property here, not its value
            //   With the current code we'd assume a `Provider<String>` to be configurable when
            //   the getter returns `null`. The property type is not currently available in this
            //   context, though.
            return value == null || HasConfigurableValue.class.isAssignableFrom(value.getClass());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/kubelet/qos/policy.go

    // container should be adjusted.
    // The OOM score of a process is the percentage of memory it consumes
    // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000
    // and 1000. Containers with higher OOM scores are killed if the system runs out of memory.
    // See https://lwn.net/Articles/391222/ for more information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * A configurable version constraint. This is exposed to the build author, so that one can express
     * more constraints on a module version.
     *
     * @since 4.4
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top