Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for mutable_s (0.27 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

            this.configurationFactory = configurationFactory;
            this.calculatedValueContainerFactory = calculatedValueContainerFactory;
            this.artifactTransformer = artifactTransformer;
    
            // Mutable state
            this.configurations = calculatedValueContainerFactory.createCache(Describables.of("configurations"));
            initCalculatedValues();
        }
    
        @Override
        public void reevaluate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Layout optimization assigns optimal data layout for layout sensitive
    // operations, and cancels all redundant transposes.
    void CreateLayoutOptimizationPipeline(
        OpPassManager& pm,  // NOLINT - MLIR contract is pass by mutable reference.
        const LayoutOptimizationPipelineOptions& options);
    
    struct StandardPipelineOptions
        : public PassPipelineOptions<StandardPipelineOptions> {
      Option<bool> enable_inliner{*this, "enable-inliner",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      // pointer.
      absl::node_hash_map<std::pair<const void*, std::string>, ResourceId>
        type_instance_str_to_op_resource_id_;
      // Used for faster callable resolution.
      mutable SymbolTableCollection symbol_table_collection_;
      // Collect all op-based side effects here.
      OpSideEffectMap op_side_effect_map_;
      const SideEffectsByResourceId empty_side_effects_map_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			opts := buildClusterOpts{
    				mesh:    cb.req.Push.Mesh,
    				mutable: mc,
    			}
    			cb.applyConnectionPool(opts.mesh, opts.mutable, tt.connectionPool)
    			// assert httpProtocolOptions
    			assert.Equal(t, opts.mutable.httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout,
    				tt.expectedHTTPPOpt.CommonHttpProtocolOptions.IdleTimeout)
    			assert.Equal(t, opts.mutable.httpProtocolOptions.CommonHttpProtocolOptions.MaxRequestsPerConnection,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      if (llvm::isa<mlir::TF::CaseOp, mlir::TF::IfOp, mlir::TF::WhileOp>(inst)) {
        auto stateless = inst->getAttrOfType<mlir::BoolAttr>("is_stateless");
        if (stateless && stateless.getValue())
          *node_def->mutable_op() = "Stateless" + node_def->op();
      }
    
      // Add inputs to the NodeDef based on the number of operands. This is required
      // as later when edges are added to the Node using Graph::AddEdge the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            config.hierarchy >> ([name] as Set) + (parents as Set)
            return config
        }
    
        private ImmutableAttributes attributes(Map<String, ?> src) {
            def attributes = AttributeTestUtil.attributesFactory().mutable()
            src.each { String name, Object value ->
                def key = Attribute.of(name, value.class)
                attributes.attribute(key as Attribute<Object>, value)
            }
            return attributes.asImmutable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    			opt := buildClusterOpts{
    				mutable: newClusterWrapper(tt.cluster),
    				port:    &model.Port{Port: 80},
    			}
    			addTelemetryMetadata(tt.cluster, opt.port, tt.service, tt.direction, tt.svcInsts)
    			if opt.mutable.cluster != nil && !reflect.DeepEqual(opt.mutable.cluster.Metadata, tt.want) {
    				t.Errorf("cluster metadata does not match expectation want %+v, got %+v", tt.want, opt.mutable.cluster.Metadata)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Maps.java

              BinaryOperator<V> mergeFunction) {
        return CollectCollectors.toImmutableEnumMap(keyFunction, valueFunction, mergeFunction);
      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code HashMap} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top