Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for unsuccessful (0.16 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// On successful deletion, `status` must be `TF_OK` and `*undeleted_files`
      /// and `*undeleted_dirs` must be 0. On unsuccessful deletion, `status` must
      /// be set to the reason why one entry couldn't be removed and the proper
      /// count must be updated. If the deletion is unsuccessful because the
      /// traversal couldn't start, `*undeleted_files` must be set to 0 and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminConfigNotificationTargetsFailed: {
    		Code:           "XMinioAdminNotificationTargetsTestFailed",
    		Description:    "Configuration update failed due an unsuccessful attempt to connect to one or more notification servers",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminProfilerNotEnabled: {
    		Code:           "XMinioAdminProfilerNotEnabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. docs/changelogs/changelog_3x.md

     *  Fix: Correctly canonicalize IPv6 addresses in `HttpUrl`. This prevented OkHttp from trusting
        HTTPS certificates issued to certain IPv6 addresses.
     *  Fix: Don't reuse connections after an unsuccessful `Expect: 100-continue`.
     *  Fix: Handle either `TLS_` or `SSL_` prefixes for cipher suite names. This is necessary for
        IBM JVMs that use the `SSL_` prefix exclusively.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. src/go/build/build.go

    			goto Found
    		} else if err != errNoModules {
    			return p, err
    		}
    
    		gopath := ctxt.gopath() // needed twice below; avoid computing many times
    
    		// tried records the location of unsuccessful package lookups
    		var tried struct {
    			vendor []string
    			goroot string
    			gopath []string
    		}
    
    		// Vendor directories get first chance to satisfy import.
    		if mode&IgnoreVendor == 0 && srcDir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	if buildID != toolBuildID {
    		t.Fatalf(".BuildID with -export %q disagrees with 'go tool buildid' %q", buildID, toolBuildID)
    	}
    }
    
    // Issue 4096. Validate the output of unsuccessful go install foo/quxx.
    func TestUnsuccessfulGoInstallShouldMentionMissingPackage(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.runFail("install", "foo/quxx")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	}()
    }
    
    // dialConnFor dials on behalf of w and delivers the result to w.
    // dialConnFor has received permission to dial w.cm and is counted in t.connCount[w.cm.key()].
    // If the dial is canceled or unsuccessful, dialConnFor decrements t.connCount[w.cm.key()].
    func (t *Transport) dialConnFor(w *wantConn) {
    	defer w.afterDial()
    	ctx := w.getCtxForDial()
    	if ctx == nil {
    		t.decConnsPerHost(w.key)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. tests/test_application.py

            "paths": {
                "/api_route": {
                    "get": {
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            }
                        },
                        "summary": "Non Operation",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  8. tests/test_generate_unique_id_function.py

                            },
                            "required": True,
                        },
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {
                                    "application/json": {
                                        "schema": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

       * Creates a new {@code ListenableFuture} whose value is a list containing the values of all its
       * successful input futures. The list of results is in the same order as the input list, and if
       * any of the provided futures fails or is canceled, its corresponding position will contain
       * {@code null} (which is indistinguishable from the future having a successful value of {@code
       * null}).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    // the assertion wasn't successful, the AssertionResult object
    // remembers a non-empty message that describes how it failed.
    //
    // To create an instance of this class, use one of the factory functions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top