Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for Replacer (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        }
                    }
                }
    """
    
            when:
            succeeds ":impl:check"
    
            then:
            executedAndNotSkipped ":api:build"
        }
    
        void "can replace project dependency #projectGroup:api:#projectVersion with external dependency org.utils:api:1.5"() {
            mavenRepo.module("org.utils", "api", '1.5').publish()
    
            createDirs("api", "impl")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[project_builddir]]
    ==== Deprecated `Project.buildDir` is to be replaced by `Project.layout.buildDirectory`
    
    The `Project.buildDir` property is deprecated.
    It uses eager APIs and has ordering issues if the value is read in build logic and then later modified.
    It could result in outputs ending up in different locations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    		redirectAction, ok := routes[0].Action.(*envoyroute.Route_Redirect)
    		g.Expect(ok).NotTo(BeFalse())
    		g.Expect(redirectAction.Redirect.PathRewriteSpecifier).To(Equal(&envoyroute.RedirectAction_PrefixRewrite{
    			PrefixRewrite: "/replace-prefix",
    		}))
    	})
    
    	t.Run("for host rewrite", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    type DaemonSetUpdateStrategyType string
    
    const (
    	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    	// Replace the old daemons only when it's killed
    	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		highestReplaced: map[string]string{},
    		workFile:        workFile,
    	}
    	var workFileReplaces []*modfile.Replace
    	if workFile != nil {
    		workFileReplaces = workFile.Replace
    		mainModules.workFileReplaceMap = toReplaceMap(workFile.Replace)
    	}
    	mainModulePaths := make(map[string]bool)
    	for _, m := range ms {
    		if mainModulePaths[m.Path] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final String source = fessConfig.getIndexReindexBody()//
                    .replace("__SOURCE_INDEX__", fromIndex)//
                    .replace("__SIZE__", fessConfig.getIndexReindexSize())//
                    .replace("__DEST_INDEX__", toIndex)//
                    .replace("__SCRIPT_SOURCE__", ComponentUtil.getLanguageHelper().getReindexScriptSource());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // +enum
    type DaemonSetUpdateStrategyType string
    
    const (
    	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    	// Replace the old daemons only when it's killed
    	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    type DaemonSetUpdateStrategyType string
    
    const (
    	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    	// Replace the old daemons only when it's killed
    	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    		if err != nil || line < 0 || line >= len(lines) {
    			continue
    		}
    		msg = strings.Replace(msg, file, base, -1) // normalize file mentions in error itself
    		msg = strings.TrimLeft(msg, " \t")
    		for _, r := range []string{`\`, `*`, `+`, `?`, `[`, `]`, `(`, `)`} {
    			msg = strings.Replace(msg, r, `\`+r, -1)
    		}
    		msg = strings.Replace(msg, `"`, `.`, -1)
    		msg = tmpRe.ReplaceAllLiteralString(msg, `autotmp_[0-9]+`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[dependency_substitutions_with]]
    ==== Substitution.with replaced with Substitution.using
    
    <<resolution_rules#sec:dependency_substitution_rules, Dependency substitutions>> using `with` method have been deprecated and are replaced with `using` method that also allows chaining.
    For example, a dependency substitution rule `substitute(project(':a')).with(project(':b'))` should be replaced with
    `substitute(project(':a')).using(project(':b'))`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top