Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 578 for rewrites (0.19 sec)

  1. src/cmd/go/internal/modfetch/coderepo.go

    		// If these are relaxed, isOriginTag will need to be relaxed as well.
    		if v == "" || v != semver.Canonical(v) {
    			// Ignore non-canonical tags: Stat rewrites those to canonical
    			// pseudo-versions. Note that we compare against semver.Canonical here
    			// instead of module.CanonicalVersion: revToRev strips "+incompatible"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    //
    // reportCmd formats the output as "# desc" followed by the given output. The
    // output is expected to contain references to 'dir', usually the source
    // directory for the package that has failed to build. reportCmd rewrites
    // mentions of dir with a relative path to dir when the relative path is
    // shorter. This is usually more pleasant. For example, if fmt doesn't compile
    // and we are in src/html, the output is
    //
    //	$ go build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/vcs.go

    			extra := []string{}
    			if subdir != "" && !strings.ContainsAny(subdir, "*?[],") {
    				extra = []string{"--include", subdir}
    			}
    			// Note that vcsRepo.ReadZip below rewrites this command
    			// to run in a different directory, to work around a fossil bug.
    			return str.StringList("fossil", "zip", "-R", ".fossil", "--name", "prefix", extra, "--", rev, target)
    		},
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      DenseIntElementsAttr val = DenseIntElementsAttr::get(const_type, 1);
      auto const_op = builder.create<TF::ConstOp>(loc, val);
      auto const_island = CreateIsland(const_op, {}, builder);
      return const_island;
    }
    
    // Rewrites the while op with extra chaining operands and results. Uses a
    // dummy constant of requested type as argument to all the new chaining
    // operands.
    TF::WhileOp RewriteWhileOp(TF::WhileOp while_op, int num_resource_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    			}
    			d.markableMethods = append(d.markableMethods, methods...)
    		}
    	}
    }
    
    // mapinitcleanup walks all pkg init functions and looks for weak relocations
    // to mapinit symbols that are no longer reachable. It rewrites
    // the relocs to target a new no-op routine in the runtime.
    func (d *deadcodePass) mapinitcleanup() {
    	for _, idx := range d.pkginits {
    		relocs := d.ldr.Relocs(idx)
    		var su *loader.SymbolBuilder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    // with a dot are escaped with an additional dot to avoid
    // looking like the end of the sequence.
    //
    // The decoded form returned by the Reader's Read method
    // rewrites the "\r\n" line endings into the simpler "\n",
    // removes leading dot escapes if present, and stops with error [io.EOF]
    // after consuming (and discarding) the end-of-sequence line.
    func (r *Reader) DotReader() io.Reader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/assign.go

    	y := mk.Len
    	if !ir.IsConst(y, constant.Int) && y.Type().Size() > types.Types[types.TUINT].Size() {
    		return false
    	}
    
    	return true
    }
    
    // extendSlice rewrites append(l1, make([]T, l2)...) to
    //
    //	init {
    //	  if l2 >= 0 { // Empty if block here for more meaningful node.SetLikely(true)
    //	  } else {
    //	    panicmakeslicelen()
    //	  }
    //	  s := l1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/cache.go

    		if os.IsExist(err) {
    			if ctx.Err() != nil {
    				return nil, ctx.Err()
    			}
    			continue
    		}
    		break
    	}
    	return
    }
    
    // rewriteVersionList rewrites the version list in dir
    // after a new *.mod file has been written.
    func rewriteVersionList(ctx context.Context, dir string) (err error) {
    	if filepath.Base(dir) != "@v" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

          /*use_resource_updates_for_aliases=*/false, shape_determination_fns,
          compilation_result, custom_legalization_passes, module_name,
          lower_to_xla_hlo);
    }
    
    // Rewrites the given module with specified args. For each of the constant args,
    // it gets inlined in the "main' function and the corresponding argument is
    // removed from the signature. For resource args, their subtypes are populated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	err error
    }
    
    // discoveryURLRoundTripper is a http.RoundTripper that rewrites the
    // {url}/.well-known/openid-configuration to the discovery URL.
    type discoveryURLRoundTripper struct {
    	base http.RoundTripper
    	// discoveryURL is the URL to use to fetch the openid configuration
    	discoveryURL *url.URL
    	// urlToRewrite is the URL to rewrite to the discovery URL
    	urlToRewrite string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top