Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for and (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * <p>
     * The values in the model remain untouched but during the process of building a project notions like inheritance and
     * interpolation can be added. This allows to have an entity which is useful in a runtime while preserving the model so
     * that it can be marshalled and unmarshalled without being tainted by runtime requirements.
     * </p>
     * <p>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. tests/query_test.go

    		t.Fatalf("Build NOT condition, but got %v", result.Statement.SQL.String())
    	}
    
    	result = dryDB.Not(DB.Where("manager IS NULL").Where("age >= ?", 20)).Find(&User{})
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

       *
       * <ol>
       *   <li>'this' and {@code formalType} are equal.
       *   <li>'this' and {@code formalType} have equal canonical form.
       *   <li>{@code formalType} is {@code <? extends Foo>} and 'this' is a subtype of {@code Foo}.
       *   <li>{@code formalType} is {@code <? super Foo>} and 'this' is a supertype of {@code Foo}.
       * </ol>
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

        * NodeProblemDetector is a DaemonSet running on each node, monitoring node health and reporting node problems as NodeCondition and Event. Currently it already supports kernel log monitoring, and will support more problem detection in the future. It is enabled by default on gce now.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    		// Expecting the result to contain 0 uploads and isTruncated to false.
    		{
    			MaxUploads:  2,
    			Prefix:      "Asia",
    			IsTruncated: false,
    		},
    		// listMultipartResults - 15.
    		// Setting `Delimiter`.
    		// MaxUploads is set more than number of meta data entries in the result.
    		// Expecting the result to contain one MultipartInfo entry and IsTruncated to be false.
    		{
    			MaxUploads:  2,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  6. fastapi/param_functions.py

                dependency.
    
                The term "scope" comes from the OAuth2 specification, it seems to be
                intentionaly vague and interpretable. It normally refers to permissions,
                in cases to roles.
    
                These scopes are integrated with OpenAPI (and the API docs at `/docs`).
                So they are visible in the OpenAPI specification.
                )
                """
            ),
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    // initializes the endpoints and configures the test server.
    // The server should be started using the Start() method.
    func UnstartedTestServer(t TestErrHandler, instanceType string) TestServer {
    	ctx, cancel := context.WithCancel(context.Background())
    	// create an instance of TestServer.
    	testServer := TestServer{cancel: cancel}
    	// return FS/Erasure object layer and temp backend.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 75.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
     * to delimit the userinfo component from the server and '%' which is the
     * URL escape character itself.
     * <p>
     * The server
     * component may a traditional NetBIOS name, a DNS name, or IP
     * address. These name resolution mechanisms and their resolution order
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * developers are saved from the hassles of encoding and decoding.
     *
     * ### Plus a modern API
     *
     * The URL (JDK1.0) and URI (Java 1.4) classes predate builders and instead use telescoping
     * constructors. For example, there's no API to compose a URI with a custom port without also
     * providing a query and fragment.
     *
     * Instances of [HttpUrl] are well-formed and always have a scheme, host, and path. With
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  10. tensorflow/c/c_api_function_test.cc

    TEST_F(CApiFunctionTest, SetGradientAndRun) {
      // Define the function and its grad
      DefineFunction(func_name_, &func_);
      TF_Function* grad_func;
      DefineFunction("MyGrad", &grad_func);
    
      // Add func and its gradient to host graph
      TF_GraphCopyFunction(host_graph_, func_, grad_func, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
      // Verify that function and its grad are in host graph's GraphDef
      GraphDef gdef;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
Back to top