Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for getHttp (0.15 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

            this.footer = footer;
        }
    
        /**
         * Returns the HTML text to appear in the top text for each page.
         */
        @Nullable @Optional @Input
        public String getTop() {
            return top;
        }
    
        /**
         * Sets the HTML text to appear in the top text for each page.
         */
        public void setTop(@Nullable String top) {
            this.top = top;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/device_util.cc

    }
    
    mlir::LogicalResult GetDevicesFromOp(mlir::Operation* op,
                                         mlir::TF::RuntimeDevices* devices) {
      auto devices_attr = op->getAttr(kDevicesAttr);
      if (!devices_attr) return mlir::success();
    
      if (auto array_attr = mlir::dyn_cast<mlir::ArrayAttr>(devices_attr)) {
        return GetDevicesFromOp(op, array_attr, devices);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/canonicalize.cc

        APInt lower_bound, upper_bound, step;
        if (!matchPattern(for_op.getLowerBound(), m_ConstantInt(&lower_bound)) ||
            !matchPattern(for_op.getUpperBound(), m_ConstantInt(&upper_bound)) ||
            !matchPattern(for_op.getStep(), m_ConstantInt(&step))) {
          return failure();
        }
        uint64_t trip_count = (upper_bound - lower_bound).sdiv(step).getZExtValue();
        if (trip_count <= 0) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

            } else if (segment.contains("*") || segment.contains("?")) {
                PatternStep step = PatternStepFactory.getStep(segment, false);
                File[] children = file.listFiles();
                if (children == null) {
                    if (!file.canRead()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

          return false;
        }
        // FusedMatMul kernel does not support grad_a/grad_b attrs
        if ((matmul->hasAttr("grad_a") &&
             mlir::cast<BoolAttr>(matmul->getAttr("grad_a")).getValue()) ||
            (matmul->hasAttr("grad_b") &&
             mlir::cast<BoolAttr>(matmul->getAttr("grad_b")).getValue())) {
          (void)rewriter.notifyMatchFailure(matmul, [&](Diagnostic &diag) {
            diag << "FusedMatMul kernel does not support grad_a/grad_b attrs";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            isUtilityProject = !project.getPlugins().hasPlugin(WarPlugin.class) && !project.getPlugins().hasPlugin(EarPlugin.class);
            EclipseWtp eclipseWtp = model.getWtp();
            EclipseWtpComponent wtpComponent = eclipseWtp.getComponent();
            libDirName = wtpComponent.getLibDeployPath();
            Set<Configuration> rootConfigs = wtpComponent.getRootConfigurations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dfs/Referral.java

        }
    
    
        /**
         * @return the altPath
         */
        public final String getAltPath () {
            return this.altPath;
        }
    
    
        /**
         * @return the ttl
         */
        public final int getTtl () {
            return this.ttl;
        }
    
    
        /**
         * @return the rpath
         */
        public final String getRpath () {
            return this.rpath;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/cache_based_manager_test.go

    	}
    }
    
    func newSecretStore(fakeClient clientset.Interface, clock clock.Clock, getTTL GetObjectTTLFunc, ttl time.Duration) *objectStore {
    	return &objectStore{
    		getObject:  getSecret(fakeClient),
    		clock:      clock,
    		items:      make(map[objectKey]*objectStoreItem),
    		defaultTTL: ttl,
    		getTTL:     getTTL,
    	}
    }
    
    func getSecretNames(pod *v1.Pod) sets.Set[string] {
    	result := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

                           absl::StrCat("module_", module_name));
      auto parent_module = entry_func->getParentOfType<ModuleOp>();
      auto versions_attr = parent_module->getAttr(kVersionsAttr);
      if (!versions_attr)
        return parent_module.emitError(CreateMissingAttributeMsg(kVersionsAttr));
    
      module_for_func.get().getOperation()->setAttr(kVersionsAttr, versions_attr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

    void GroupByDialectPass::processFunction(
        mlir::func::FuncOp func, int& counter,
        llvm::SmallDenseSet<StringRef>& dialects, Operation* module) {
      // don't re-process functions we generated
      if (func->getAttr("dialect")) return;
      processRegion(func.getBody(), counter, dialects, module);
    }
    
    void GroupByDialectPass::processRegion(mlir::Region& region, int& counter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top