Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for deleted (0.2 sec)

  1. tensorflow/c/c_api.cc

      TF_Graph* const graph = s->graph;
      if (graph != nullptr) {
        graph->mu.lock();
        graph->sessions.erase(s);
        const bool del = graph->delete_requested && graph->sessions.empty();
        graph->mu.unlock();
        if (del) delete graph;
      }
      delete s->session;
      delete s;
    }
    
    void TF_SessionRun(TF_Session* session, const TF_Buffer* run_options,
    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. api/go1.3.txt

    pkg syscall (windows-386), const ERROR_MORE_DATA = 234
    pkg syscall (windows-386), const ERROR_MORE_DATA Errno
    pkg syscall (windows-386), const ERROR_NETNAME_DELETED = 64
    pkg syscall (windows-386), const ERROR_NETNAME_DELETED Errno
    pkg syscall (windows-386), const IOC_VENDOR = 402653184
    pkg syscall (windows-386), const IOC_VENDOR ideal-int
    pkg syscall (windows-386), const SIO_KEEPALIVE_VALS = 2550136836
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  3. docs/bucket/versioning/versioning_DELETE_versionEnabled.png

    versioning_DELETE_versionEnabled.png...
    PNG Image
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Jun 27 17:27:23 GMT 2020
    - 143.9K bytes
    - Viewed (0)
  4. docs/bucket/versioning/versioning_DELETE_versionEnabled_id.png

    versioning_DELETE_versionEnabled_id.png...
    PNG Image
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Jun 27 17:27:23 GMT 2020
    - 122.6K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                <p><strong>Warning:</strong> This is an internal utility property that is only public for technical reasons,
                it is not part of the public API. In particular, this property can be changed or deleted without prior
                notice.</p>
                ]]>
              </description>
            </field>
            <field>
              <name>priority</name>
              <version>4.1.0+</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  6. fastapi/routing.py

            """
            Add a *path operation* using an HTTP DELETE operation.
    
            ## Example
    
            ```python
            from fastapi import APIRouter, FastAPI
    
            app = FastAPI()
            router = APIRouter()
    
            @router.delete("/items/{item_id}")
            def delete_item(item_id: str):
                return {"message": "Item deleted"}
    
            app.include_router(router)
            ```
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 2.
    		// Attempt to delete an object which is already deleted.
    		// Still should return http response status 204.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  8. fastapi/applications.py

            Add a *path operation* using an HTTP DELETE operation.
    
            ## Example
    
            ```python
            from fastapi import FastAPI
    
            app = FastAPI()
    
            @app.delete("/items/{item_id}")
            def delete_item(item_id: str):
                return {"message": "Item deleted"}
            ```
            """
            return self.router.delete(
                path,
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Delete */
        public static final String LABELS_search_list_button_delete = "{labels.search_list_button_delete}";
    
        /** The key of the message: Do you really want to delete? */
        public static final String LABELS_search_list_delete_confirmation = "{labels.search_list_delete_confirmation}";
    
        /** The key of the message: Delete all with this query */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  10. cmd/data-usage-cache_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "Tiers")
    				return
    			}
    			if z.Tiers == nil {
    				z.Tiers = make(map[string]tierStats, zb0002)
    			} else if len(z.Tiers) > 0 {
    				for key := range z.Tiers {
    					delete(z.Tiers, key)
    				}
    			}
    			for zb0002 > 0 {
    				zb0002--
    				var za0001 string
    				var za0002 tierStats
    				za0001, err = dc.ReadString()
    				if err != nil {
    					err = msgp.WrapError(err, "Tiers")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
Back to top