Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,266 for Enforce (0.16 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                    -->
                    <artifactId>maven-enforcer-plugin</artifactId>
                    <version>1.3.1</version>
                    <executions>
                        <execution>
                            <id>enforce-versions</id>
                            <phase>initialize</phase>
                            <goals>
                                <goal>enforce</goal>
                            </goals>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                    -->
                    <artifactId>maven-enforcer-plugin</artifactId>
                    <version>1.4</version>
                    <executions>
                        <execution>
                            <id>enforce-versions</id>
                            <phase>initialize</phase>
                            <goals>
                                <goal>enforce</goal>
                            </goals>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "metadata contains the object metadata.",
    	"spec":     "spec contains the signer (if any) and trust anchors.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    				cgc.removeOldestN(ctx, unit, len(unit)) // Remove all.
    				delete(evictUnits, key)
    			}
    		}
    	}
    
    	// Enforce max containers per evict unit.
    	if gcPolicy.MaxPerPodContainer >= 0 {
    		cgc.enforceMaxContainersPerEvictUnit(ctx, evictUnits, gcPolicy.MaxPerPodContainer)
    	}
    
    	// Enforce max total number of containers.
    	if gcPolicy.MaxContainers >= 0 && evictUnits.NumContainers() > gcPolicy.MaxContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	return bytes.NewBuffer(configBytes), bytes.NewBuffer(configBytes), nil
    }
    
    // NewFromPlugins returns an admission.Interface that will enforce admission control decisions of all
    // the given plugins.
    func (ps *Plugins) NewFromPlugins(pluginNames []string, configProvider ConfigProvider, pluginInitializer PluginInitializer, decorator Decorator) (Interface, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

            when:
            fails ":checkDeps"
    
            then:
            failure.assertThatCause(Matchers.startsWith("No matching variant of project :platform was found."))
        }
    
        def "can enforce a local platform dependency"() {
            def module1 = mavenHttpRepo.module("org", "foo", "1.1").publish()
            def module2 = mavenHttpRepo.module("org", "foo", "1.2").publish()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    version = '1.9'
                }
            """
        }
    
        // When publishing a platform, the Gradle metadata will _not_ contain enforced platforms
        // as those are synthetic platforms generated at runtime. This test is here to make sure
        // this is the case
        def "can enforce a published platform"() {
            def platform = mavenHttpRepo.module("org", "platform", "1.0")
                .asGradlePlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. android/pom.xml

            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
              <execution>
                <id>enforce-versions</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireMavenVersion>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
              <execution>
                <id>enforce-versions</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireMavenVersion>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. test/typeparam/issue50485.dir/a.go

    	return func(a1 A1) Func1[A2, R] {
    		return Func1[A2, R](func(a2 A2) R {
    			return r(a1, a2)
    		})
    	}
    }
    
    type HList interface {
    	sealed()
    }
    
    // Header is constrains interface type,  enforce Head type of Cons is HT
    type Header[HT any] interface {
    	HList
    	Head() HT
    }
    
    // Cons means H :: T
    // zero value of Cons[H,T] is not allowed.
    // so Cons defined as interface type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top