Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,266 for Enforce (0.25 sec)

  1. integration-tests/gradle/settings.gradle.kts

    include("standardJvmRuntimeClasspathAndroid")
    
    include("androidRuntimeClasspathAndroid")
    
    // Enforce 'android' variant in Java projects via constraint
    
    include("standardJvmAndroidConstraintCompileClasspathJava")
    
    include("androidAndroidConstraintCompileClasspathJava")
    
    // Enforce 'jre' variant in Android projects via constraint
    
    include("standardJvmJreConstraintCompileClasspathAndroid")
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 28 18:15:57 UTC 2023
    - 749 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/settings.gradle

    // tag::prefer-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_SETTINGS
    }
    // end::prefer-settings[]
    
    // tag::enforce-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
    }
    // end::enforce-settings[]
    
    // tag::prefer-projects[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_PROJECT
    }
    // end::prefer-projects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/kotlin/settings.gradle.kts

    // tag::prefer-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_SETTINGS
    }
    // end::prefer-settings[]
    
    // tag::enforce-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
    }
    // end::enforce-settings[]
    
    // tag::prefer-projects[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_PROJECT
    }
    // end::prefer-projects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/factory.go

    	// JwtFilter returns the JWT HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no JWT validation is needed.
    	JwtFilter(useExtendedJwt, clearRouteCache bool) *hcm.HttpFilter
    
    	// AuthNFilter returns the (authn) HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no authentication is needed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/node_container_manager_linux.go

    	}
    
    	klog.V(4).InfoS("Attempting to enforce Node Allocatable", "config", nc)
    
    	cgroupConfig := &CgroupConfig{
    		Name:               cm.cgroupRoot,
    		ResourceParameters: getCgroupConfig(nodeAllocatable),
    	}
    
    	// Using ObjectReference for events as the node maybe not cached; refer to #42701 for detail.
    	nodeRef := nodeRefFromNode(cm.nodeInfo.Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/util/workloadinstances/util.go

    	instances := index.GetByIP(proxyIP) // list is ordered by namespace/name
    	if len(instances) == 0 {
    		return nil
    	}
    	if len(instances) == 1 { // dominant use case
    		// NOTE: for the sake of backwards compatibility, we don't enforce
    		//       instance.Namespace == proxy.ConfigNamespace
    		return instances[0]
    	}
    
    	// try to find workload instance with the same name as proxy
    	proxyName := InstanceNameForProxy(proxy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/enforcerplugin/some-thing/pom.xml

        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-enforcer-plugin</artifactId>
                    <version>1.1.1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>enforce</goal>
                            </goals>
                            <inherited>true</inherited>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/security_unix.go

    import (
    	"internal/stringslite"
    )
    
    func secure() {
    	initSecureMode()
    
    	if !isSecureMode() {
    		return
    	}
    
    	// When secure mode is enabled, we do one thing: enforce specific
    	// environment variable values (currently we only force GOTRACEBACK=none)
    	//
    	// Other packages may also disable specific functionality when secure mode
    	// is enabled (determined by using linkname to call isSecureMode).
    
    	secureEnv()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 866 bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Plugins which measure and enforce code quality.
     */
    @NonNullApi
    package org.gradle.api.plugins.quality;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 763 bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * The type token should be a non-instantiable and non extensible class.
     *
     * The producer side APIs in Gradle do not currently enforce (at compile-time or run-time) details or result types.
     * Over time, they will be evolved to enforce usage of correct types.
     *
     * Currently, the only reason to use structured details/results objects is to expose
     * information to the build scan plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top