Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for qdel (0.21 sec)

  1. tensorflow/c/c_api.cc

    TF_Graph* TF_NewGraph() { return new TF_Graph; }
    
    void TF_DeleteGraph(TF_Graph* g) {
      if (g == nullptr) return;
      g->mu.lock();
      g->delete_requested = true;
      const bool del = g->sessions.empty();
      g->mu.unlock();
      if (del) delete g;
    }
    
    TF_Operation* TF_GraphOperationByName(TF_Graph* graph, const char* oper_name) {
      mutex_lock l(graph->mu);
      auto iter = graph->name_map.find(oper_name);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_aws/fess.json

    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    	if opts.Versioned {
    		w.Header().Set(xhttp.AmzVersionID, objInfo.VersionID)
    	}
    
    	lastModified := objInfo.ModTime.UTC().Format(http.TimeFormat)
    	w.Header().Set(xhttp.LastModified, lastModified)
    	w.Header().Del(xhttp.ContentType)
    
    	if _, ok := opts.ObjectAttributes[xhttp.Checksum]; ok {
    		chkSums := objInfo.decryptChecksums(0)
    		// AWS does not appear to append part number on this API call.
    		switch {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: Failed to create HTTP request for Put Object: <ERROR> %v", i+1, err)
    		}
    		// Removes auth header if test case requires it.
    		if testCase.removeAuthHeader {
    			req.Header.Del("Authorization")
    		}
    		switch testCase.fault {
    		case malformedEncoding:
    			req, err = malformChunkSizeSigV4(req, testCase.chunkSize-1)
    		case signatureMismatch:
    			req, err = malformDataSigV4(req, 'z')
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top