Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,286 for Allows (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    	"uuid",         // an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$
    	"uuid3",        // an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/metaonly/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package metaonly
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // MetadataOnlyObject allows decoding only the apiVersion, kind, and metadata fields of
    // JSON data.
    // TODO: enable meta-only decoding for protobuf.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

        private final List<String> sitemapList = new ArrayList<>();
    
        public boolean allows(final String path, final String userAgent) {
            final Directive directive = getMatchedDirective(userAgent);
            if (directive == null) {
                return true;
            }
            return directive.allows(path);
        }
    
        public int getCrawlDelay(final String userAgent) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/TypeBuilder.java

     */
    @Incubating
    @HasInternalProtocol
    public interface TypeBuilder<T> {
    
        /**
         * Allows the plugin to register the implementation type.
         * @param implementation the implementation class.
         */
        TypeBuilder<T> defaultImplementation(Class<?> implementation);
    
        /**
         * Allows type registration rules to add internal views to the registered type.
         * @param internalView the internal view class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginResolutionStrategy.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.management;
    
    import org.gradle.api.Action;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Allows modification of {@link PluginRequest}s before they are resolved.
     *
     * @since 3.5
     */
    @HasInternalProtocol
    public interface PluginResolutionStrategy {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:25:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/SampleIncludeProcessorTest.groovy

    """
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
            content.contains('println "hello world"')
        }
    
        def "allows sample included with multiple files"() {
            given:
            tmpDir.newFile("src/samples/build.gradle") << """
    task compile {
        doLast {
            println "compiling source"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go

    // tag of all data written to it with the given key.
    // This allows writing the message progressively instead
    // of passing it as a single slice. Common users should use
    // the Sum function instead.
    //
    // The key must be unique for each message, as authenticating
    // two different messages with the same key allows an attacker
    // to forge messages at will.
    func New(key *[32]byte) *MAC {
    	m := &MAC{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/fipstls/tls.go

    func Force() {
    	required.Store(true)
    }
    
    // Abandon allows non-FIPS-approved settings.
    // If called from a non-test binary, it panics.
    func Abandon() {
    	// Note: Not using boring.UnreachableExceptTests because we want
    	// this test to happen even when boring.Enabled = false.
    	name := runtime_arg0()
    	// Allow _test for Go command, .test for Bazel,
    	// NaClMain for NaCl (where all binaries run as NaClMain),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/public/BUILD

    # Once moved out of experimental, these will be stable.
    # The idea behind a separate public/ directory is to make apparent
    # which headers are part of TF's public interface (and which headers)
    # are implementation details. This structure allows us to also perform future
    # programmatic checks that all "public" headers only include other "public"
    # headers.
    
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/DefaultTestFilterTest.groovy

    import org.gradle.api.InvalidUserDataException
    import spock.lang.Specification
    
    class DefaultTestFilterTest extends Specification {
    
        def spec = new DefaultTestFilter()
    
        def "allows configuring test names"() {
            expect: spec.includePatterns.isEmpty()
    
            when:
            spec.includeTestsMatching("*fooMethod")
            spec.includeTestsMatching("*.FooTest.*")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top