Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 371 for disallow (0.12 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

            when:
            container.create("a", container.type, method)
            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "disallow mutating from register with type actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            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
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/CachingTaskInputFileCollection.java

    /**
     * A {@link org.gradle.api.file.ConfigurableFileCollection} that can be used as a task input property. Caches the matching set of files during task execution, and discards the result after task execution.
     *
     * TODO - disallow further changes to this collection once task has started
     * TODO - keep the file entries to snapshot later, to avoid a stat on each file during snapshot
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

            when:
            container.create("a", method)
            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "disallow mutating from register actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            String methodUnderTest = mutatingMethods.key
            Closure method = bind(mutatingMethods.value)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            if ( prop == null ) {
                return;
            }
            Set<String> disallow = new HashSet<>();
            StringTokenizer st = new StringTokenizer(prop, ",");
            while ( st.hasMoreTokens() ) {
                disallow.add(st.nextToken().trim());
            }
            this.disallowCompound = disallow;
        }
    
    
        protected void initDefaults () throws CIFSException {
    
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/c/eager/abstract_context.h

     public:
      AbstractContextKind getKind() const { return kind_; }
    
      // Release any underlying resources, including the interface object.
      //
      // WARNING: The destructor of this class is marked as protected to disallow
      // clients from directly destroying this object since it may manage its own
      // lifetime through ref counting. Thus clients MUST call Release() in order to
      // destroy an instance of this class.
      virtual void Release() = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:16:58 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

            }
            if (type.getSuperclass() != null) {
                visitFields(type.getSuperclass(), collector);
            }
    
            // Disallow instance fields. This doesn't guarantee that the object is immutable, just makes it less likely
            // We might tighten this constraint to also disallow any _code_ on immutable types that reaches out to static state
            for (Field field : type.getDeclaredFields()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

            parser.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
            parser.setFeature("http://xml.org/sax/features/namespaces", false)
            parser.setFeature("http://apache.org/xml/features/disallow-doctype-decl", false)
            this.resultsNode = parser.parse(testResultsFile)
    
            resultsNode.CUNIT_RESULT_LISTING.CUNIT_RUN_SUITE.CUNIT_RUN_SUITE_SUCCESS.each { Node suiteNode ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/unions.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check that overlong unions don't bog down type checking.
    // Disallow them for now.
    
    package p
    
    type t int
    
    type (
    	t00 t; t01 t; t02 t; t03 t; t04 t; t05 t; t06 t; t07 t; t08 t; t09 t
    	t10 t; t11 t; t12 t; t13 t; t14 t; t15 t; t16 t; t17 t; t18 t; t19 t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

            }
            return result;
        }
    
        @Override
        @SuppressWarnings("unchecked")
        protected Set<E> delegate() {
            // The entrySet/keySet disallow adding elements to the set, making it covariant, so downcast is safe there.
            return (Set<E>) delegate;
        }
    
        private void reportAggregatingAccess() {
            listener.onAggregatingAccess();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

                path = path.replace("\\", "/");
                // ---------------------------------------------------------------------------------
                // I'm not sure if this last regexp was really intended to disallow the usage of
                // network paths as user.home directory. Unfortunately it did. I removed it and
                // have not detected any problems yet.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top