Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 371 for disallow (0.21 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

        protected static final Pattern USER_AGENT_RECORD =
                Pattern.compile("^user-agent:\\s*([^\\t\\n\\x0B\\f\\r]+)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern DISALLOW_RECORD = Pattern.compile("^disallow:\\s*([^\\s]*)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern ALLOW_RECORD = Pattern.compile("^allow:\\s*([^\\s]*)\\s*$", Pattern.CASE_INSENSITIVE);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

        protected Map<String, Closure> getMutatingMethods() {
            return super.getMutatingMethods() + [
                "getByName(String, Action)": { container.getByName("a", Actions.doNothing()) }
            ]
        }
    
        def "disallow mutating from named actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            addToContainer(a)
            String methodUnderTest = mutatingMethods.key
            Closure method = bind(mutatingMethods.value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            where:
            description            | propertyConfig
            "default behaviour"    | ""
            "finalize on read"     | "it.finalizeValueOnRead()"
            "disallow unsafe read" | "it.disallowUnsafeRead()"
        }
    
        def "task input collection property can consume the mapped output of another task"() {
            taskTypeWithInputFileProperty()
            taskTypeWithInputListProperty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/runtime/symtabinl.go

    //
    // This is typically used as:
    //
    //	for u, uf := newInlineUnwinder(...); uf.valid(); uf = u.next(uf) { ... }
    //
    // Implementation note: This is used in contexts that disallow write barriers.
    // Hence, the constructor returns this by value and pointer receiver methods
    // must not mutate pointer fields. Also, we keep the mutable state in a separate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/internal/typeconversion/NotationParserBuilder.java

         */
        public NotationParserBuilder<N, T> noImplicitConverters() {
            implicitConverters = false;
            return this;
        }
    
        /**
         * Allow null as a valid input. The default is to disallow null.
         *
         * <p>When this is enabled, all converters must be null safe.
         *
         * TODO - attach the null safety to each converter and infer whether null is a valid input or not.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 27 20:34:59 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    		// Entire set of ASCII punctuation, from which we remove characters:
    		//     ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
    		// We disallow some shell special characters: " ' * < > ? ` |
    		// (Note that some of those are disallowed by the Windows file system as well.)
    		// We also disallow path separators / : and \ (fileNameOK is only called on path element characters).
    		// We allow spaces (U+0020) in file names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/runtime/debugcall.go

    			"debugCall32768",
    			"debugCall65536":
    			// These functions are allowed so that the debugger can initiate multiple function calls.
    			// See: https://golang.org/cl/161137/
    			return
    		}
    
    		// Disallow calls from the runtime. We could
    		// potentially make this condition tighter (e.g., not
    		// when locks are held), but there are enough tightly
    		// coded sequences (e.g., defer handling) that it's
    		// better to play it safe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      // mutable variables and produce ReadVariable/AssignVariable ops in TFLite.
      bool enable_tflite_variables = false;
      // Whether to disable the variable freezing pass or not.
      // By default we freeze all variables and disallow mutable variables. When
      // 'enable_tflite_variables' is true then we allow mutable variable only.
      bool disable_variable_freezing = false;
      // Whether to unfold large splat constant tensors and replace them with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/header-params.md

        ```Python hl_lines="10"
        {!> ../../../docs_src/header_params/tutorial002.py!}
        ```
    
    !!! warning
        Before setting `convert_underscores` to `False`, bear in mind that some HTTP proxies and servers disallow the usage of headers with underscores.
    
    ## Duplicate headers
    
    It is possible to receive duplicate headers. That means, the same header with multiple values.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer/fuzzer.go

    				obj.Schema = &apiextensions.JSONSchemaProps{}
    				c.Fuzz(obj.Schema)
    			} else {
    				obj.Allows = c.RandBool()
    			}
    		},
    		func(obj *apiextensions.JSONSchemaPropsOrArray, c fuzz.Continue) {
    			// disallow both Schema and JSONSchemas to be nil.
    			if c.RandBool() {
    				obj.Schema = &apiextensions.JSONSchemaProps{}
    				c.Fuzz(obj.Schema)
    			} else {
    				obj.JSONSchemas = make([]apiextensions.JSONSchemaProps, c.Intn(3)+1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top