Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,020 for Replacer (0.14 sec)

  1. src/cmd/go/internal/workcmd/work.go

    that could be controlled by this version, but for now the version
    specified has no effect.
    
    The replace directive has the same syntax as the replace directive in a
    go.mod file and takes precedence over replaces in go.mod files.  It is
    primarily intended to override conflicting replaces in different workspace
    modules.
    
    To determine whether the go command is operating in workspace mode, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/version_replace.txt

    go 1.14
    require (
    	example.com/printversion v0.1.0
    )
    replace (
    	example.com/printversion => example.com/printversion v1.0.0
    	example.com/version v1.0.0 => example.com/version v1.0.1
    )
    -- out.txt --
    path is example.com/printversion
    main is example.com/printversion v0.1.0
    	(replaced by example.com/printversion v1.0.0)
    using example.com/version v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 989 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_replace.txt

    env GO111MODULE=on
    env GOFLAGS=-mod=mod
    [short] skip
    
    # golang.org/issue/30166: 'go mod tidy' should not crash if a replaced module is
    # involved in a cycle.
    cd cycle
    env GOTRACEBACK=off
    go mod tidy
    cd ..
    
    # From inside the module, 'go list -m all' should NOT include transitive
    # requirements of modules that have been replaced.
    go list -m all
    stdout 'rsc.io/quote/v3 v3.0.0'
    ! stdout 'rsc.io/sampler'
    ! stdout 'golang.org/x/text'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentModuleMetadataDetails.java

        /**
         * Configures a replacement module for this module.
         * A real world example: 'com.google.collections:google-collections' is replaced by 'com.google.guava:guava'.
         *
         * Subsequent invocations of this method replace the previous 'replacedBy' value.
         *
         * For information and examples please see {@link org.gradle.api.artifacts.dsl.ComponentMetadataHandler}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

                    is ObjectOrigin.FromLocalValue -> origin.copy(assigned = replace(origin.assigned))
                    is ObjectOrigin.ImplicitThisReceiver -> origin.copy(resolvedTo = replaceInReceiver(origin.resolvedTo))
                    is ObjectOrigin.PropertyDefaultValue -> origin.copy(receiver = replace(origin.receiver))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_install_hint.txt

    ! stderr 'to add it:'...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 11 21:43:54 UTC 2021
    - 239 bytes
    - Viewed (0)
  7. src/cmd/go/internal/modinfo/info.go

    		}
    	}
    	if m.Deprecated != "" {
    		s += " (deprecated)"
    	}
    	if m.Replace != nil {
    		s += " => " + m.Replace.Path
    		if m.Replace.Version != "" {
    			s += " " + versionString(m.Replace)
    			if m.Replace.Update != nil {
    				s += " [" + versionString(m.Replace.Update) + "]"
    			}
    		}
    		if m.Replace.Deprecated != "" {
    			s += " (deprecated)"
    		}
    	}
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

            const_op.getLoc(), const_op.getType(), var_handle_op);
    
        // Replace each usage of ConstOp with the corresponding ReadVariableOp.
        const_op.getResult().replaceAllUsesWith(read_variable_op);
      }
    
      return const_op_name_map;
    }
    
    // Inside `session_init_func`, creates AssignVariableOps(VarHandleOp, ConstOp)
    // for each VarHandleOp that replaces a ConstOp. The `session_init_func` will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateInsertCustomAggregationOpsPass(
        const ::stablehlo::quantization::CalibrationOptions& calib_opts);
    
    // Replaces composite functions with quantized composite functions. After this
    // pass runs, functions in the given graph will be replaced with their quantized
    // versions. By doing so, the quantization will be applied to the given input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    -- go.mod --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/added v0.1.0 => ./a1
    	example.net/added v0.2.0 => ./a2
    	example.net/added v0.3.0 => ./a1
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/added v0.1.0
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/added v0.1.0 => ./a1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top