Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for core_id (0.17 sec)

  1. fess-crawler-es/pom.xml

    			<artifactId>fess-crawler-lasta</artifactId>
    			<version>${project.version}</version>
    			<optional>true</optional>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>corelib</artifactId>
    			<version>${corelib.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs.fesen.client</groupId>
    			<artifactId>fesen-httpclient</artifactId>
    			<version>${fesen.httpclient.version}</version>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    Status TFSavedModelAPI::GetFunctions(
        int node_id,
        absl::flat_hash_map<std::string, ConcreteFunction*>* functions) {
      const auto& nodes = bundle_.saved_object_graph().nodes();
      if (node_id >= nodes.size()) {
        return errors::OutOfRange(
            "node_id ", node_id,
            " not found.  Maximum node ID: ", nodes.size() - 1);
      }
      const SavedObject* current_node = &nodes.Get(node_id);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/net/cgo_socknew.go

    	copy(sa.Addr[:], ip)
    	return (*C.struct_sockaddr)(unsafe.Pointer(&sa))
    }
    
    func cgoSockaddrInet6(ip IP, zone int) *C.struct_sockaddr {
    	sa := syscall.RawSockaddrInet6{Family: syscall.AF_INET6, Scope_id: uint32(zone)}
    	copy(sa.Addr[:], ip)
    	return (*C.struct_sockaddr)(unsafe.Pointer(&sa))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 753 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        } else {
          internal_name += object_names_[node_id][0];
        }
        pretty_symbol_table_name_[node_id] = SaveString(internal_name);
      }
    }
    
    llvm::ArrayRef<llvm::StringRef> ObjectNames::GetExportedNames(
        int node_id) const {
      auto it = exported_names_.find(node_id);
      if (it != exported_names_.end()) {
        return it->second;
      }
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/net/cgo_sockold.go

    	return (*C.struct_sockaddr)(unsafe.Pointer(&sa))
    }
    
    func cgoSockaddrInet6(ip IP, zone int) *C.struct_sockaddr {
    	sa := syscall.RawSockaddrInet6{Len: syscall.SizeofSockaddrInet6, Family: syscall.AF_INET6, Scope_id: uint32(zone)}
    	copy(sa.Addr[:], ip)
    	return (*C.struct_sockaddr)(unsafe.Pointer(&sa))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 14:05:39 UTC 2022
    - 842 bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

      path.resize(path_size);
      for (int32_t node_id : path) {
        string ascii_art;
        if (node_id == dst) {
          ascii_art = "+-> ";
        } else if (node_id != src) {
          ascii_art = "|   ";
        } else {
          ascii_art = "+-- ";
        }
        absl::StrAppend(&description, ascii_art, node_name(node_id), "\n");
      }
      return description;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/security/podsecurity/admission_test.go

    	if err := p.ValidateInitialization(); err != nil {
    		b.Fatal(err)
    	}
    
    	corePod := &core.Pod{}
    	v1Pod := &corev1.Pod{}
    	data, err := ioutil.ReadFile("testdata/pod_restricted.yaml")
    	if err != nil {
    		b.Fatal(err)
    	}
    	if err := yaml.Unmarshal(data, v1Pod); err != nil {
    		b.Fatal(err)
    	}
    	if err := v1.Convert_v1_Pod_To_core_Pod(v1Pod, corePod, nil); err != nil {
    		b.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:47 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. pom.xml

    			<groupId>com.ibm.icu</groupId>
    			<artifactId>icu4j</artifactId>
    			<version>${icu4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>corelib</artifactId>
    			<version>${corelib.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.opensearch</groupId>
    			<artifactId>opensearch</artifactId>
    			<version>${opensearch.version}</version>
    			<scope>provided</scope>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu May 30 06:30:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function_revival_state.h

    // constructed Function and Resource objects.
    struct TFSignatureDefFunctionRevivalState {
      // Index of the node in the SavedObjectGraph it was loaded from.
      int node_id = 0;
    
      // Pointer to the original functiondef. fdef_ is guaranteed to be
      // non-null.
      const FunctionDef* fdef = nullptr;
    
      // SavedConcreteFunction contains much of the metadata of the expected "types"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function_revival_state.h

    // wraps partially constructed Function and Resource objects.
    struct TFConcreteFunctionRevivalState {
      // Index of the node in the SavedObjectGraph it was loaded from.
      int node_id;
    
      // Pointer to the original functiondef. fdef_ is guaranteed to be
      // non-null.
      const FunctionDef* fdef;
    
      // TensorHandle captures for this funtion
      std::vector<ImmediateExecutionTensorHandle*> captures;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top