Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 559 for necessarily (0.17 sec)

  1. src/net/http/roundtrip_js.go

    		return t.roundTrip(req)
    	}
    
    	ac := js.Global().Get("AbortController")
    	if !ac.IsUndefined() {
    		// Some browsers that support WASM don't necessarily support
    		// the AbortController. See
    		// https://developer.mozilla.org/en-US/docs/Web/API/AbortController#Browser_compatibility.
    		ac = ac.New()
    	}
    
    	opt := js.Global().Get("Object").New()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. licenses/cel.dev/expr/proto/test/v1/LICENSE

          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. LICENSES/vendor/sigs.k8s.io/knftables/LICENSE

          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 23 13:09:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/net/smtp/smtp.go

    	if !ok {
    		return
    	}
    	return tc.ConnectionState(), true
    }
    
    // Verify checks the validity of an email address on the server.
    // If Verify returns nil, the address is valid. A non-nil return
    // does not necessarily indicate an invalid address. Many servers
    // will not verify addresses for security reasons.
    func (c *Client) Verify(addr string) error {
    	if err := validateLine(addr); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                root(":", ":test:") {
                    project(":a", "test:a:") {
                        artifact(fileName: "a-late.jar") // only the file name is affected (this is the current behaviour, not necessarily the desired behaviour)
                        project(":b", "test:b:early") {
                            artifact(fileName: "b-transitive-late.jar")
                        }
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. licenses/cel.dev/expr/LICENSE

          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. licenses/github.com/howardjohn/unshare-go/LICENSE

          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 07:51:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Response.kt

     * [ResponseBody] for an explanation and examples.
     */
    class Response internal constructor(
      /**
       * The request that initiated this HTTP response. This is not necessarily the same request issued
       * by the application:
       *
       * * It may be transformed by the user's interceptors. For example, an application interceptor
       *   may add headers like `User-Agent`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/block.go

    	HotNotFlowIn Hotness = 1 << iota // This block is only reached by branches
    	HotInitial                       // In the block order, the first one for a given loop.  Not necessarily topological header.
    	HotPgo                           // By PGO-based heuristics, this block occurs in a hot loop
    
    	HotNot                 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            component.getTestSuites().add(defaultTestSuite);
    
            return component;
        }
    
        // TODO: This approach is not necessarily correct for non-main features. All publications will attempt to use the main feature's
        // compile and runtime classpaths for version mapping, even if a non-main feature is being published.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top