Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,045 for Enforce (0.11 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                    for (Plugin element : src) {
                        if (element.isInherited() || !element.getExecutions().isEmpty()) {
                            // NOTE: Enforce recursive merge to trigger merging/inheritance logic for executions
                            Plugin plugin = Plugin.newInstance(false);
                            plugin = mergePlugin(plugin, element, sourceDominant, context);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

                                                     llvm::StringRef module_name) {
      // The following ops must be preserved regardless of reachability. Ideally,
      // all graphs should have control dependencies to enforce this but this is
      // currently not the case (see b/177478741).
      const llvm::SmallVector<std::string, 4> ops_to_preserve = {
          "tf.TPUReplicateMetadata", "tf.TPUCompilationResult",
          "tf.TPUReplicatedOutput"};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/limitranger/admission.go

    	maxLimitRequestRatio := float64(enforced.Value())
    	if enforced.Value() <= resource.MaxMilliValue {
    		observedRatio = observedRatio * 1000
    		maxLimitRequestRatio = float64(enforced.MilliValue())
    	}
    
    	if observedRatio > maxLimitRequestRatio {
    		return fmt.Errorf("%s max limit to request ratio per %s is %s, but provided ratio is %f", resourceName, limitType, enforced.String(), displayObservedRatio)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                    for (Plugin element : src) {
                        if (element.isInherited() || !element.getExecutions().isEmpty()) {
                            // NOTE: Enforce recursive merge to trigger merging/inheritance logic for executions
                            Plugin plugin = Plugin.newInstance(false);
                            plugin = mergePlugin(plugin, element, sourceDominant, context);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. pom.xml

                  </rules>
                  <fail>true</fail>
                </configuration>
              </execution>
              <execution>
                <id>enforce-bytecode-version</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireJavaVersion>
                      <version>[17,)</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    //
    // 2. One client workload with sidecar injected.
    // 3. Two naked server workloads with custom certs whose URI SAN have different SPIFFE trust domains.
    // 4. PeerAuthentication with strict mtls, to enforce the mtls connection.
    // 5. DestinaitonRule with tls ISTIO_MUTUAL mode, because Istio auto mTLS will let client send plaintext to naked servers by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/generate.main.go

    	if err != nil {
    		return nil, fmt.Errorf("unable to read input file: %v", err)
    	}
    
    	m := &messages{}
    
    	if err := yaml.Unmarshal(b, m); err != nil {
    		return nil, err
    	}
    
    	return m, nil
    }
    
    // Enforce that names and codes follow expected regex and are unique
    func validate(ms *messages) error {
    	codes := make(map[string]bool)
    	names := make(map[string]bool)
    
    	for _, m := range ms.Messages {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    		if wle.Spec.Network != "" {
    			network = wle.Spec.Network
    		}
    
    		// enforce traversing waypoints
    		policies = append(policies, implicitWaypointPolicies(ctx, Waypoints, waypoint, services)...)
    
    		w := &workloadapi.Workload{
    			Uid:                   a.generateWorkloadEntryUID(wle.Namespace, wle.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_termination_order.go

    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    
    	"k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    // terminationOrdering is used to enforce a termination ordering for sidecar containers.  It sets up
    // dependencies between sidecars and allows the pod termination process to wait until the grace period
    // expires, or all dependent containers have finished terminating.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    Otherwise, the constraint has no effect.
    Dependency constraints can also define a <<rich_versions.adoc#rich-version-constraints,rich version constraint>> and support <<rich_versions.adoc#sec:strict-version,strict versions>> to enforce a version even if it contradicts with the version defined by a transitive dependency (e.g. if the version needs to be downgraded).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top