Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 371 for disallow (0.13 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            groovyCompilerClassLoaderSpec.allowPackage("org.codehaus.groovy");
            groovyCompilerClassLoaderSpec.allowPackage("groovy");
            groovyCompilerClassLoaderSpec.allowPackage("groovyjarjarasm");
            // Disallow classes from Groovy Jar that reference external classes. Such classes must be loaded from astTransformClassLoader,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		// In our case, the culprit is the `xt_owner` (`-m owner`) module in iptables calls the `passwd` service to lookup the user.
    		// To disallow this, bindmount /dev/null over nsswitch.conf so this never happens.
    		// This should be safe to do, even if the user has an nsswitch entry that would work fine: we always use a numeric ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. 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)
  4. src/log/slog/value.go

    	"unsafe"
    )
    
    // A Value can represent any Go value, but unlike type any,
    // it can represent most small values without an allocation.
    // The zero Value corresponds to nil.
    type Value struct {
    	_ [0]func() // disallow ==
    	// num holds the value for Kinds Int64, Uint64, Float64, Bool and Duration,
    	// the string length for KindString, and nanoseconds since the epoch for KindTime.
    	num uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/size.go

    		CheckSize(m.Type)
    		addMethod(m, true)
    	}
    
    	for _, m := range t.Methods() {
    		if m.Sym != nil || m.Type == nil {
    			continue
    		}
    
    		// In 1.18, embedded types can be anything. In Go 1.17, we disallow
    		// embedding anything other than interfaces. This requirement was caught
    		// by types2 already, so allow non-interface here.
    		if !m.Type.IsInterface() {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.cc

                          const std::unordered_set<string>& tags,
                          SavedModelBundleLite* const bundle) {
      SessionOptions rewritten_options(session_options);
      // We disallow calls to Session::Extend() on the returned session, so we can
      // reduce memory consumption by not storing the original GraphDef.
      rewritten_options.config.mutable_experimental()
          ->set_optimize_for_static_graph(true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

            synchronized (delegate) {
                oldValue = delegate.putIfAbsent(key, value);
            }
            reportAccess(key, oldValue);
            if (oldValue == null) {
                // Properties disallow null values, so it is safe to assume that the map was changed.
                reportChange(key, value);
            }
            return oldValue;
    
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        }
      }
    
      private void doTestExistsThrowsSecurityException() throws IOException, URISyntaxException {
        File file = null;
        // In Java 9, Logger may read the TZ database. Only disallow reading the class path URLs.
        final PermissionCollection readClassPathFiles =
            new FilePermission("", "read").newPermissionCollection();
        for (URL url : ClassPath.parseJavaClassPath()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

            when:
            fails()
    
            then:
            failure.assertHasCause('The value for this property is final and cannot be changed any further.')
        }
    
        def "can disallow changes to a property using API without finalizing the value"() {
            given:
            buildFile << '''
                int counter = 0
                def provider = providers.provider { [(++counter): ++counter] }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // Healthy pods will be subject to the PDB for eviction.
      //
      // Additional policies may be added in the future.
      // Clients making eviction decisions should disallow eviction of unhealthy pods
      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top