Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for Detached (0.2 sec)

  1. src/database/sql/sql.go

    	// alwaysNewConn forces a new connection to the database.
    	alwaysNewConn connReuseStrategy = iota
    	// cachedOrNewConn returns a cached connection, if available, else waits
    	// for one to become available (if MaxOpenConns has been reached) or
    	// creates a new database connection.
    	cachedOrNewConn
    )
    
    // driverConn wraps a driver.Conn with a mutex, to
    // be held during all calls into the Conn. (including any calls onto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	var buffer2 bytes.Buffer
    	// retrieve the contents of response body.
    	n, err := io.Copy(&buffer2, response.Body)
    	c.Assert(err, nil)
    	c.Assert(n, int64(len([]byte("hello world"))))
    	// asserted the contents of the fetched object with the expected result.
    	c.Assert(true, bytes.Equal(buffer2.Bytes(), []byte("hello world")))
    
    	// Test the response when object name ends with a slash.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    						Hosts: []string{"foo.bar.com"},
    						Port:  &networking.Port{Name: "name1", Number: 7, Protocol: "http"},
    					},
    				},
    			},
    			"", "",
    		},
    		{
    			"happy k8s gateway-api server with no attached routes",
    			&networking.Gateway{
    				Servers: []*networking.Server{{
    					Hosts: []string{"~/foo.bar.com"},
    					Port:  &networking.Port{Name: "name1", Number: 7, Protocol: "http"},
    				}},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    }
    
    // ImportPathError is a type of error that prevents a package from being loaded
    // for a given import path. When such a package is loaded, a *Package is
    // returned with Err wrapping an ImportPathError: the error is attached to
    // the imported package, not the importing package.
    //
    // The string returned by ImportPath must appear in the string returned by
    // Error. Errors that wrap ImportPathError (such as PackageError) may omit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    // invocation of SyncPod is expected to make progress towards reaching the
    // desired state. SyncPod exits with isTerminal when the pod was detected to
    // have reached a terminal lifecycle phase due to container exits (for
    // RestartNever or RestartOnFailure) and the next method invoked will be
    // SyncTerminatingPod. If the pod terminates for any other reason, SyncPod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          }
          // We don't import the _SOURCE node.
          continue;
        }
        if (input_node.IsArg() && input_edge->IsControlEdge()) {
          // Currently we have not reached consensus as to what TF function
          // semantics are (b/133509504). Here we assume that all arguments to a
          // function should be available before we start execution of any internal
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name:       "all skip",
    			injects:    []framework.Code{framework.Skip, framework.Skip, framework.Skip},
    			wantStatus: framework.Skip,
    		},
    		{
    			name:       "error on third, but not reached",
    			injects:    []framework.Code{framework.Skip, framework.Success, framework.Error},
    			wantStatus: framework.Success,
    		},
    		{
    			name:       "no bind plugin, returns default binder",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    }
    
    // ObjectSpeedTestHandler - reports maximum speed of a cluster by performing PUT and
    // GET operations on the server, supports auto tuning by default by automatically
    // increasing concurrency and stopping when we have reached the limits on the
    // system.
    func (a adminAPIHandlers) ObjectSpeedTestHandler(w http.ResponseWriter, r *http.Request) {
    	ctx, cancel := context.WithCancel(r.Context())
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * The {@link CloseableList} has been subsumed into another. It may not be closed or subsumed
         * into any other.
         */
        SUBSUMED,
    
        /**
         * Some {@link ListenableFuture} has a callback attached that will close the {@link
         * CloseableList}, but it has not yet run. The {@link CloseableList} may not be subsumed.
         */
        WILL_CLOSE,
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                <![CDATA[
                The classifier of the dependency. It is appended to
                the filename after the version. This allows:
                <ul>
                <li>referring to attached artifact, for example {@code sources} and {@code javadoc}:
                see <a href="../maven-core/artifact-handlers.html">default artifact handlers</a> for a list,</li>
                <li>distinguishing two artifacts
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top