Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 244 for Configurable (0.16 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    ng); public abstract void returnComponentLogge(String, String); public abstract int getActiveLoggerCount(); static void <clinit>(); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Configurable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Configurable { public abstract void configure(org.codehaus.plexus.configuration.PlexusConfiguration) throws org.codehaus.plexus.configuration.PlexusConfigurationE; } org/codehaus/plexus/personality/plex...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    The `Test` task associated with the target inherits its name from the suite.  Other properties of the `Test` task are configurable.
    
    ==== Test Suite Type ====
    Each test suite must be assigned a type.
    Types can be used to group related test suites across multiple Gradle projects within a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/server.go

    				labelAPIServerHeartbeatFunc(name, peeraddress))
    			go controller.Run(ctx)
    			return nil
    		})
    		// TODO: move this into generic apiserver and make the lease identity value configurable
    		s.GenericAPIServer.AddPostStartHookOrDie("start-kube-apiserver-identity-lease-garbage-collector", func(hookContext genericapiserver.PostStartHookContext) error {
    			go apiserverleasegc.NewAPIServerLeaseGC(
    				client,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/crypto/tls/auth.go

    		peerAlgs = []SignatureScheme{PKCS1WithSHA1, ECDSAWithSHA1}
    	}
    	// Pick signature scheme in the peer's preference order, as our
    	// preference order is not configurable.
    	for _, preferredAlg := range peerAlgs {
    		if needFIPS() && !isSupportedSignatureAlgorithm(preferredAlg, defaultSupportedSignatureAlgorithmsFIPS) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

    package org.gradle.api.provider;
    
    import org.gradle.api.SupportsKotlinAssignmentOverloading;
    import org.gradle.api.model.ObjectFactory;
    
    import javax.annotation.Nullable;
    
    /**
     * A container object that represents a configurable value of a specific type. A {@link Property} is also a
     * {@link Provider} and can be used in the same way as a {@link Provider}. A property's value can be accessed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/apis/certificates/types.go

    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    	//  5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.
    	//  6. Whether or not requests for CA certificates are allowed.
    	SignerName string
    
    	// expirationSeconds is the requested duration of validity of the issued
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    The attributes will resemble the following.  User-configurable attributes are highlighted below the sample.
    
    .outgoingVariants task output
    [source,text]
    ----
    --------------------------------------------------
    Variant coverageDataElementsForTest (i)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            then:
            tasks == [task] as Set
            1 * builtBy.getDependenciesForInternalUse(_) >> [task]
            0 * _
        }
    
        def "constructs a configurable collection"() {
            expect:
            def collection = factory.configurableFiles("some collection")
            collection.files.empty
            collection.buildDependencies.getDependencies(null).empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    
    /**
     * The base implementation for all properties in Gradle.
     * <p>
     *     A property is a provider where the value is configurable.
     * </p>
     * <p>
     *     A property's value is not stored in the property itself,
     *     but computed by some {@link ValueSupplier}, which
     *     provides the basic machinery for lazy evaluation.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    	registerStringParameter(constants.LogLevel, "warn", "Fallback value for log level in CNI config file, if not specified in helm template")
    
    	// Not configurable in CNI helm charts
    	registerStringParameter(constants.MountedCNINetDir, "/host/etc/cni/net.d", "Directory on the container where CNI networks are installed")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top