Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for disallow (0.11 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // about it being private, you have mis-spelled SetUp() as Setup().
      struct Setup_should_be_spelled_SetUp {};
      virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
    
      // We disallow copying Tests.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
    };
    
    typedef internal::TimeInMillis TimeInMillis;
    
    // A copyable object representing a user specified test property which can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // about it being private, you have mis-spelled SetUp() as Setup().
      struct Setup_should_be_spelled_SetUp {};
      virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
    
      // We disallow copying Tests.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
    };
    
    typedef internal::TimeInMillis TimeInMillis;
    
    // A copyable object representing a user specified test property which can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            1 * host.beforeRead(null) >> null
            1 * fileResolver.resolve('a') >> file
            0 * _
    
            then:
            result == [file] as Set
        }
    
        def "can disallow changes when unsafe reads disallowed and host is not ready"() {
            given:
            def file = new File('one')
            collection.from('a')
            collection.disallowUnsafeRead()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for this property cannot be changed any further.'
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
            def b = property()
            def c = elementProperty()
            def property = property()
            property.disallowUnsafeRead()
    
            property.addAll(a)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))
    #else
    # define GTEST_ATTRIBUTE_UNUSED_
    #endif
    
    // A macro to disallow operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_ASSIGN_(type)\
      void operator=(type const &)
    
    // A macro to disallow copy constructor and operator=
    // This should be used in the private: declarations for a class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))
    #else
    # define GTEST_ATTRIBUTE_UNUSED_
    #endif
    
    // A macro to disallow operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_ASSIGN_(type)\
      void operator=(type const &)
    
    // A macro to disallow copy constructor and operator=
    // This should be used in the private: declarations for a class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users.go

    				writeErrorResponseJSON(ctx, w, importErrorWithAPIErr(ctx, ErrAdminConfigBadJSON, err, userPolicyMappingsFile, ""), r.URL)
    				return
    			}
    			for u, pm := range userPolicyMap {
    				// disallow setting policy mapping if user is a temporary user
    				ok, _, err := globalIAMSys.IsTempUser(u)
    				if err != nil && err != errNoSuchUser {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    if (type.equals(Object.class)) {
                        continue;
                    }
                    if (type.equals(ServiceRegistry.class)) {
                        // Disallow custom services of type ServiceRegistry, as these are automatically provided
                        throw new IllegalArgumentException("Cannot define a service of type ServiceRegistry: " + serviceProvider);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    			// If you create /tmp/go.mod for experimenting,
    			// then any tests that create work directories under /tmp
    			// will find it and get modules when they're not expecting them.
    			// It's a bit of a peculiar thing to disallow but quite mysterious
    			// when it happens. See golang.org/issue/26708.
    			fmt.Fprintf(os.Stderr, "go: warning: ignoring go.mod in system temp root %v\n", os.TempDir())
    			if RootMode == NeedRoot {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            1 * provider1.present >> true
            1 * provider1.get() >> a
            1 * action.execute(a)
            0 * _
        }
    
        void setupContainerDefaults() {}
    
        def "disallow mutating from common methods when #mutatingMethods.key"() {
            setupContainerDefaults()
            addToContainer(a)
            String methodUnderTest = mutatingMethods.key
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top