Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for impacted (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * A change in behavior related to <<#rel5.0:dependency_constraints,dependency and version constraints>> may impact a small number of users.
     * There have been several changes to <<#rel5.0:changes_to_default_task,property factory methods on DefaultTask>> that may impact the creation of custom tasks.
    
    [[changes_4.10]]
    == Upgrading from 4.9 and earlier
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      return visited;
    }
    
    // We want to adjust the func op according to some cross ops information.
    static StatusOr<FuncOp> PostProcessFuncOp(FuncOp func) {
      OpBuilder builder(func);
      // When a quantized constant is imported, its quantization parameter is set
      // to be narrow range. Here revert to be the fully range if the user doesn't
      // require narrow range.
      func.walk([&](tfl::QConstOp cst) {
        Value value = cst.getResult();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        regression that was introduced in OkHttp 3.14.5.
    
    
    ## Version 3.14.5
    
    _2020-01-03_
    
     *  Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact
        the stream only or the entire connection. With this fix OkHttp will now send HTTP/2 pings after
        a stream timeout to determine whether the connection should remain eligible for pooling.
    
    
    ## Version 3.14.4
    
    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/cmd/go/internal/test/test.go

    	if err != nil {
    		return nil, nil, nil, err
    	}
    
    	// If imported is true then this package is imported by some
    	// package being tested. Make building the test version of the
    	// package depend on building the non-test version, so that we
    	// only report build errors once. Issue #44624.
    	if imported && ptest != p {
    		buildTest := b.CompileAction(work.ModeBuild, work.ModeBuild, ptest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    It is sometimes the case, though, that certain properties have a runtime impact, while others do not.
    If a property is changing that does not have an impact on the runtime classpath, it may be desirable to exclude it from up-to-date checks and <<build_cache.adoc#build_cache,build cache>> key calculations.
    However, excluding the entire file would also exclude the properties that do have a runtime impact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		defer f.Close()
    		sym, err := f.ImportedSymbols()
    		if err != nil {
    			fatalf("cannot load imported symbols from XCOFF file %s: %v", obj, err)
    		}
    		for _, s := range sym {
    			if s.Name == "runtime_rt0_go" || s.Name == "_rt0_ppc64_aix_lib" {
    				// These symbols are imported by runtime/cgo but
    				// must not be added to _cgo_import.go as there are
    				// Go symbols.
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    			continue
    		}
    
    		// verify that all uses of foo refer to the imported package foo (imp)
    		for ident, obj := range info.Uses {
    			if ident.Value == "foo" {
    				if obj, ok := obj.(*PkgName); ok {
    					if obj.Imported() != imp {
    						t.Errorf("%s resolved to %v; want %v", ident.Value, obj.Imported(), imp)
    					}
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    			continue
    		}
    
    		// verify that all uses of foo refer to the imported package foo (imp)
    		for ident, obj := range info.Uses {
    			if ident.Name == "foo" {
    				if obj, ok := obj.(*PkgName); ok {
    					if obj.Imported() != imp {
    						t.Errorf("%s resolved to %v; want %v", ident, obj.Imported(), imp)
    					}
    				} else {
    					t.Errorf("%s resolved to %v; want package name", ident, obj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    	ispkg := !strings.HasPrefix(pkg, "cmd/") || strings.Contains(pkg, "/internal/") || strings.Contains(pkg, "/vendor/")
    
    	// Start final link command line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
      "foo": {
        "secretKey": "foobar123",
        "status": "enabled"
      }
    }
    `,
    		// Built-in groups should be imported without errors even if LDAP is
    		// enabled.
    		allGroupsFile: `{
      "mygroup": {
        "version": 1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top