Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for mutable_s (0.21 sec)

  1. tensorflow/c/eager/c_api_test.cc

      SetOpAttrValueScalar(ctx, op, i_list_values, "strides", status);
    
      tensorflow::AttrValue padding_value;
      *padding_value.mutable_s() = "VALID";
      tensorflow::SetOpAttrValueScalar(ctx, op, padding_value, "padding", status);
    
      tensorflow::AttrValue data_format_value;
      *data_format_value.mutable_s() = "NHWC";
      tensorflow::SetOpAttrValueScalar(ctx, op, data_format_value, "data_format",
                                       status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_tls_test.go

    			opts := &buildClusterOpts{
    				mutable: newClusterWrapper(&cluster.Cluster{
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: test.discoveryType},
    				}),
    				mesh: push.Mesh,
    			}
    			if test.h2 {
    				setH2Options(opts.mutable)
    			}
    			cb.applyUpstreamTLSSettings(opts, test.tls, test.mtlsCtx)
    
    			if test.expectTransportSocket && opts.mutable.cluster.TransportSocket == nil ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

      public static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() {
        return CollectCollectors.toImmutableEnumSet();
      }
    
      /**
       * Returns a new, <i>mutable</i> {@code EnumSet} instance containing the given elements in their
       * natural order. This method behaves identically to {@link EnumSet#copyOf(Collection)}, but also
       * accepts non-{@code Collection} iterables and empty iterables.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       *
       * @since 21.0
       */
      public static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() {
        return CollectCollectors.toImmutableEnumSet();
      }
    
      /**
       * Returns a new, <i>mutable</i> {@code EnumSet} instance containing the given elements in their
       * natural order. This method behaves identically to {@link EnumSet#copyOf(Collection)}, but also
       * accepts non-{@code Collection} iterables and empty iterables.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            e.cause instanceof IllegalStateException
            e.cause.message == "Cannot create 'thing.child' using creation rule 'create thing.child as String' as model element 'thing' is no longer mutable."
        }
    
        def "cannot set value when element is not mutable"() {
            def action = Stub(Action)
    
            given:
            registry.registerInstance("thing", "value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Protects mutable state in *impl_.  This is mutable as some const
      // methods need to lock it too.
      mutable internal::Mutex mutex_;
    
      // Opaque implementation object.  This field is never changed once
      // the object is constructed.  We don't mark it as const here, as
      // doing so will cause a warning in the constructor of UnitTest.
      // Mutable state in *impl_ is protected by mutex_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Protects mutable state in *impl_.  This is mutable as some const
      // methods need to lock it too.
      mutable internal::Mutex mutex_;
    
      // Opaque implementation object.  This field is never changed once
      // the object is constructed.  We don't mark it as const here, as
      // doing so will cause a warning in the constructor of UnitTest.
      // Mutable state in *impl_ is protected by mutex_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

     * <li>For each property whose getter is annotated with {@link Inject}, service instance will be injected instead. These properties may have a setter method and may be abstract.</li>
     * <li>For each mutable property as set method is generated.</li>
     * <li>For each method whose last parameter is an {@link org.gradle.api.Action}, an override is generated that accepts a {@link groovy.lang.Closure} instead.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

        }
    
        private void assertMutable() {
            if (state.get() != State.INIT) {
                throw new IllegalStateException("Cannot add services to service registry " + this + " as it is no longer mutable");
            }
        }
    
        private ServiceRegistration newRegistration() {
            return new ServiceRegistration() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Note that this requirement makes it unsupported to write tasks that configure other tasks at execution time.
    
    [[config_cache:requirements:shared_objects]]
    === Sharing mutable objects
    When storing a task to the configuration cache, all objects directly or indirectly referenced through the task's fields are serialized.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top