Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for method1 (0.13 sec)

  1. src/cmd/go/alldocs.go

    //
    // Doc prints the documentation comments associated with the item identified by its
    // arguments (a package, const, func, type, var, method, or struct field)
    // followed by a one-line summary of each of the first-level items "under"
    // that item (package-level declarations for a package, methods for a type,
    // etc.).
    //
    // Doc accepts zero, one, or two arguments.
    //
    // Given no arguments, that is, when run as
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/main/webapp/js/bootstrap.min.js.map

    '4.4.1'\nconst DATA_KEY           = 'bs.scrollspy'\nconst EVENT_KEY          = `.${DATA_KEY}`\nconst DATA_API_KEY       = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n  offset : 10,\n  method : 'auto',\n  target : ''\n}\n\nconst DefaultType = {\n  offset : 'number',\n  method : 'string',\n  target : '(string|element)'\n}\n\nconst Event = {\n  ACTIVATE      : `activate${EVENT_KEY}`,\n  SCROLL        : `scroll${EVENT_KEY}`,\n  LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    }
    
    // fakeAction records information about requests to aid in testing.
    type fakeAction struct {
    	method string
    	path   string
    	query  string
    }
    
    // String returns method=path to aid in testing
    func (f *fakeAction) String() string {
    	return strings.Join([]string{f.method, f.path}, "=")
    }
    
    type FakeResponse struct {
    	statusCode int
    	content    []byte
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    					t.Fatalf("unexpected requested pod termination: %#v", s)
    				}
    				// expect we get a pod sync record for kill that should have the same grace period as before (2), but no
    				// running pod because the SyncKnownPods method killed it
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodCreate},
    					{name: "pod1", updateType: kubetypes.SyncPodKill, gracePeriod: &two},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. fastapi/applications.py

                summary=summary,
                description=description,
                response_description=response_description,
                responses=responses,
                deprecated=deprecated,
                methods=methods,
                operation_id=operation_id,
                response_model_include=response_model_include,
                response_model_exclude=response_model_exclude,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// The UpdateThreshold method should have been called once, since this is the first run.
    	_, err := manager.synchronize(diskInfoProvider, activePodsFunc)
    
    	if err != nil {
    		t.Fatalf("Manager should not have an error %v", err)
    	}
    
    	// The UpdateThreshold method should not have been called again, since not enough time has passed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

        val request =
          Request.Builder()
            .url(url)
            .apply {
              if (withOverride) {
                cacheUrlOverride(url)
              }
            }
            .method(requestMethod, requestBodyOrNull(requestMethod))
            .build()
        val response1 = client.newCall(request).execute()
        response1.body.close()
        assertThat(response1.header("X-Response-ID")).isEqualTo("1")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              }
            };
      }
    
      /**
       * Very rough equivalent of a timed get, produced by calling the no-arg get method in another
       * thread and waiting a short time for it.
       *
       * <p>We need this to test the behavior of no-arg get methods without hanging the main test thread
       * forever in the case of failure.
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              }
            };
      }
    
      /**
       * Very rough equivalent of a timed get, produced by calling the no-arg get method in another
       * thread and waiting a short time for it.
       *
       * <p>We need this to test the behavior of no-arg get methods without hanging the main test thread
       * forever in the case of failure.
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	c.execCtxCalled = true
    	return c.fc.ExecContext(ctx, q, args)
    }
    
    // TestQueryExecContextOnly ensures drivers only need to implement QueryContext
    // and ExecContext methods.
    func TestQueryExecContextOnly(t *testing.T) {
    	// Ensure connection does not implement non-context interfaces.
    	var connType driver.Conn = &ctxOnlyConn{}
    	if _, ok := connType.(driver.Execer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top