Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,565 for Applies (0.11 sec)

  1. pkg/scheduler/testing/wrappers.go

    	NilPodAffinity PodAffinityKind = iota
    	// PodAffinityWithRequiredReq applies a HARD requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredReq
    	// PodAffinityWithPreferredReq applies a SOFT requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithPreferredReq
    	// PodAffinityWithRequiredPreferredReq applies HARD and SOFT requirements to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredPreferredReq
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/ModelElementState.java

    import groovy.lang.Closure;
    import org.gradle.model.internal.core.MutableModelNode;
    
    public interface ModelElementState extends GeneratedViewState {
        MutableModelNode getBackingNode();
    
        /**
         * Applies the given action to the value of the given property.
         */
        void apply(String name, Closure<?> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 992 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults.go

    	defaultCacheSize  int32 = 1000
    	defaultAPIVersion       = "v1"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_KMSConfiguration applies defaults to KMSConfiguration.
    func SetDefaults_KMSConfiguration(obj *KMSConfiguration) {
    	if obj.Timeout == nil {
    		obj.Timeout = defaultTimeout
    	}
    
    	if obj.APIVersion == "" {
    		obj.APIVersion = defaultAPIVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries the original (this) provider
         * and applies the transformation to the result. Whenever the original provider has no value, the new provider
         * will also have no value and the transformation will not be called.
         * </p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         * <p>
         * A Repository Layout that applies the following patterns:
         * </p>
         * <ul>
         *     <li>Artifacts: <code>$baseUri/{@value #GRADLE_ARTIFACT_PATTERN}</code></li>
         *     <li>Ivy: <code>$baseUri/{@value #GRADLE_IVY_PATTERN}</code></li>
         * </ul>
         * <h4>'maven'</h4>
         * <p>
         * A Repository Layout that applies the following patterns:
         * </p>
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&InitConfiguration{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/tasks/GenerateKotlinDependencyExtensions.kt

     */
    fun DependencyHandler.kotlin(module: String, version: String? = null): Any =
        "org.jetbrains.kotlin:kotlin-${'$'}module${'$'}{version?.let { ":${'$'}version" } ?: ""}"
    
    
    /**
     * Applies the given Kotlin plugin [module] at the embedded version (currently _${embeddedKotlinVersion}_).
     *
     * For example: `plugins { embeddedKotlin("plugin.serialization") }`
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    signals and instead delivers them over one or more registered
    channels. Specifically, it applies to the signals SIGHUP, SIGINT,
    SIGQUIT, SIGABRT, and SIGTERM. It also applies to the job control
    signals SIGTSTP, SIGTTIN, and SIGTTOU, in which case the system
    default behavior does not occur. It also applies to some signals that
    otherwise cause no action: SIGUSR1, SIGUSR2, SIGPIPE, SIGALRM,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/post_quantize.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass applies some clean up steps after quantization.
    
    #include <memory>
    #include <string>
    #include <utility>
    
    #include "llvm/Support/Casting.h"
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaNestedBuildIntegrationTest.groovy

    package org.gradle.plugins.ide.idea
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class IdeaNestedBuildIntegrationTest extends AbstractIntegrationSpec {
        def "can use GradleBuild task to run a build that applies the IDEA plugin"() {
            buildFile << """
                task go(type: GradleBuild) {
                    dir = 'other'
                }
            """
            file('other/settings.gradle') << "rootProject.name = 'other'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top