Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 241 for set_type (0.13 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

            return {type(None)}, None
    
          # TODO(mdan): Actually resolve the type here instead.
          ret_type = _AG_FIXED_RETURN_TYPE.get(name.qn[1], None)
          if ret_type is not None:
            return {ret_type}, None
          raise NotImplementedError('return type of {}'.format(name))
    
        elif f_type == (TFRTypes.TF_RAW_OP,):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

                        esClient.admin().cluster().prepareNodesHotThreads().setIgnoreIdleThreads(ignoreIdleThreads).setInterval(interval)
                                .setThreads(threads).setTimeout(timeout).setType(type).execute().actionGet(timeout);
                append(buf, "cluster_name", () -> response.getClusterName().value()).append(',');
                final String hotThreads = response.getNodesMap().entrySet().stream().map(e -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/publish/DefaultPublishArtifact.java

            this.name = name;
        }
    
        @Override
        public void setExtension(String extension) {
            this.extension = extension;
        }
    
        @Override
        public void setType(String type) {
            this.type = type;
        }
    
        @Override
        public void setClassifier(String classifier) {
            this.classifier = classifier;
        }
    
        public void setDate(Date date) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/seh.go

    		writeSEHAMD64(ctxt)
    	}
    }
    
    func writeSEHAMD64(ctxt *Link) {
    	ldr := ctxt.loader
    	mkSecSym := func(name string, kind sym.SymKind) *loader.SymbolBuilder {
    		s := ldr.CreateSymForUpdate(name, 0)
    		s.SetType(kind)
    		s.SetAlign(4)
    		return s
    	}
    	pdata := mkSecSym(".pdata", sym.SSEHSECT)
    	xdata := mkSecSym(".xdata", sym.SSEHSECT)
    	// The .xdata entries have very low cardinality
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Link.java

        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getType() {
            return type;
        }
    
        public void setType(String type) {
            this.type = type;
        }
    
        public String getLocation() {
            return location;
        }
    
        public void setLocation(String location) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/inittask.go

    		// This slice header is already defined in runtime/proc.go, so we update it here with new contents.
    		sh := ldr.Lookup("runtime.runtime_inittasks", 0)
    		sb := ldr.MakeSymbolUpdater(sh)
    		sb.SetSize(0)
    		sb.SetType(sym.SNOPTRDATA) // Could be SRODATA, but see issue 58857.
    		sb.AddAddr(ctxt.Arch, t)
    		sb.AddUint(ctxt.Arch, uint64(ldr.SymSize(t)/int64(ctxt.Arch.PtrSize)))
    		sb.AddUint(ctxt.Arch, uint64(ldr.SymSize(t)/int64(ctxt.Arch.PtrSize)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/c/python_api.cc

        for (const auto& p : *shapes_and_types) {
          auto* out_shape_and_type = handle_data.add_shape_and_type();
          ic->ShapeHandleToProto(p.shape, out_shape_and_type->mutable_shape());
          out_shape_and_type->set_dtype(p.dtype);
          *out_shape_and_type->mutable_type() = p.type;
        }
      }
      string result;
      handle_data.SerializeToString(&result);
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifact.java

         * ivy and the extension is xml.
         *
         * @see #getExtension()
         */
        String getType();
    
        /**
         * Sets the type of this artifact.
         */
        void setType(String type);
    
        /**
         * Returns the extension of this artifact. Often the extension is the same as the type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 12 22:06:42 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    					Port:     svcInfo.NodePort(),
    					Protocol: protocol,
    					SetType:  utilipset.BitmapPort,
    				}}
    			case utilipset.ProtocolUDP:
    				nodePortSet = proxier.ipsetList[kubeNodePortSetUDP]
    				entries = []*utilipset.Entry{{
    					// No need to provide ip info
    					Port:     svcInfo.NodePort(),
    					Protocol: protocol,
    					SetType:  utilipset.BitmapPort,
    				}}
    			case utilipset.ProtocolSCTP:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

          Value handle = tensor_array_v3_op.getHandle();
          auto handle_type = mlir::cast<TensorType>(handle.getType());
          if (handle_type.getElementType().isInteger(/*width=*/32)) {
            Type resource_tensor_type =
                handle_type.clone(TF::ResourceType::get(rewriter.getContext()));
            handle.setType(resource_tensor_type);
          }
        }
    
        // Special type fixes for scalar tensor types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top