Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for getDirs (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      return {constraints_[value] = merged, merged != persisted};
    }
    
    void ValuesConstraintSet::Walk(
        llvm::function_ref<void(Value, ValueConstraint)> walk) const {
      for (auto &kv : constraints_) walk(kv.getFirst(), kv.getSecond());
    }
    
    std::optional<ValueConstraint> ValuesConstraintSet::GetConstraint(
        Value value) const {
      auto it = constraints_.find(value);
      if (it == constraints_.end()) return std::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

     * repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s).
     * <p>
     * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object
     * graph construction.
     * <p>
     * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

     * repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s).
     * <p>
     * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object
     * graph construction.
     * <p>
     * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                        def currentValue = service."\${name}Count"
                        println "Evaluating \${name} \${currentValue}"
                    }
    
                    class NestedBean {
                        @Input getFirst() {
                            count("nestedInputValue")
                            return "first"
                        }
    
                        @Input getSecond() {
                            return "second"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // of modifications to that function.
      OperationSetTy recompute_analysis_for_funcs;
    
      for (auto& entry : while_body_func_to_while_ops) {
        func::FuncOp while_body = entry.getFirst();
        SmallVector<TF::WhileOp>& while_callers = entry.getSecond();
        if (recompute_analysis_for_funcs.contains(while_body)) {
          // TODO(b/202540801): Recomputing side effect analysis for the entire
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                        logger.warn("DefaultHttpClient does not have {}.", propertyName);
                    }
                }
            }
    
            formSchemeList.forEach(p -> {
                final FormScheme scheme = p.getFirst();
                final Credentials credentials = p.getSecond();
                scheme.authenticate(credentials, (request, consumer) -> {
    
                    // request header
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            def differentSchema = schema2.factory.create()
            differentSchema.value == null
            differentSchema.number == 0
        }
    
        def "Java rule class can have non-public getters, setters and rule methods"() {
            expect:
            def schema = extractor.extract(AbstractJavaPropertyRules)
            schema.rules.size() == 2
            schema.factory.create() != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        device_list.reserve(devices.size());
        for (auto alias_and_devices : devices) {
          NamedAttribute device_name_attr = builder.getNamedAttr(
              alias_and_devices.getFirst(),
              builder.getStrArrayAttr(alias_and_devices.getSecond()));
          device_list.emplace_back(device_name_attr);
        }
        devices_attr.emplace(builder.getDictionaryAttr(device_list));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Bias tensor is optional.
      const bool has_bias = !(!getBias() || getBias().getType().isa<NoneType>());
    
      // Get the tensors.
      DenseElementsAttr input_tensor, weights_tensor, bias_tensor;
      if (!matchPattern(getInput(), m_Constant(&input_tensor)) ||
          !matchPattern(getFilter(), m_Constant(&weights_tensor)) ||
          (has_bias && !matchPattern(getBias(), m_Constant(&bias_tensor)))) {
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    				if err != nil {
    					t.Fatal(err)
    				}
    
    				// To accurately simulate a watch we must delete the exact pods
    				// the rs is waiting for.
    				expectedDels := manager.expectations.GetUIDs(GetKey(rsSpec, t))
    				podsToDelete := []*v1.Pod{}
    				isController := true
    				for _, key := range expectedDels.List() {
    					nsName := strings.Split(key, "/")
    					podsToDelete = append(podsToDelete, &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top