Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,253 for logic (0.05 sec)

  1. pkg/dns/server/name_table.go

    	// same-network endpoints in any cluster.
    	MulticlusterHeadlessEnabled bool
    }
    
    // BuildNameTable produces a table of hostnames and their associated IPs that can then
    // be used by the agent to resolve DNS. This logic is always active. However, local DNS resolution
    // will only be effective if DNS capture is enabled in the proxy
    func BuildNameTable(cfg Config) *dnsProto.NameTable {
    	out := &dnsProto.NameTable{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/registry/batch/cronjob/strategy.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // cronJobStrategy implements verification logic for Replication Controllers.
    type cronJobStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating CronJob objects.
    var Strategy = cronJobStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package that contains registration logic for build script classpath instrumentation.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 20:10:38 UTC 2024
    - 813 bytes
    - Viewed (0)
  4. pkg/registry/autoscaling/horizontalpodautoscaler/strategy.go

    )
    
    // autoscalerStrategy implements behavior for HorizontalPodAutoscalers
    type autoscalerStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating HorizontalPodAutoscaler
    // objects via the REST API.
    var Strategy = autoscalerStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:51:00 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. docs/en/layouts/custom.yml

        {{ page.meta.get("description", config.site_description) or "" }}
    
    
      # Start of custom modified logic
      # Logo
      - &logo >-
        {%- if layout.logo -%}
          {{ layout.logo }}
        {%- elif config.theme.logo -%}
          {{ config.docs_dir }}/{{ config.theme.logo }}
        {%- endif -%}
      # End of custom modified logic
    
      # Logo (icon)
      - &logo_icon >-
        {{ config.theme.icon.logo or "" }}
    
    # Meta tags
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 14:05:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    They also serve as the primary mechanism for organizing build logic.
    
    == Benefits of plugins
    
    Writing many tasks and duplicating configuration blocks in build scripts can get messy.
    Plugins offer several advantages over adding logic directly to the build script:
    
    - *Promotes Reusability*: Reduces the need to duplicate similar logic across projects.
    - *Enhances Modularity*: Allows for a more modular and organized build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/AbstractInjectedClasspathInstrumentationStrategy.kt

            val isThirdPartyAgentPresent = ManagementFactory.getRuntimeMXBean().inputArguments.find { AgentUtils.isThirdPartyJavaAgentSwitch(it) } != null
            return if (isThirdPartyAgentPresent) {
                // Currently, the build logic instrumentation can interfere with Java agents, such as Jacoco
                // So, disable or fail or whatever based on which execution modes are enabled
                whenThirdPartyAgentPresent()
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/BuildSessionScopeFileTimeStampInspector.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Used for the project cache file hash cache.
     *
     * There is no additional logic apart from what is also in {@link FileTimeStampInspector}.
     */
    @ServiceScope(Scope.BuildSession.class)
    public class BuildSessionScopeFileTimeStampInspector extends FileTimeStampInspector implements RootBuildLifecycleListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeDependencyResolver.java

    import org.gradle.api.Task;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Resolves dependencies to {@link TaskNode} objects. Uses the same logic as {@link #TASK_AS_TASK}.
     */
    @ServiceScope(Scope.Build.class)
    public class TaskNodeDependencyResolver implements DependencyResolver {
        private final TaskNodeFactory taskNodeFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            (valueSource as? Describable)?.let {
                it.displayName + " has changed"
            } ?: "a build logic input of type '${unpackType(valueSource).simpleName}' has changed"
    
        private
        fun buildLogicInputFailed(obtainedValue: ObtainedValue, failure: Throwable): InvalidationReason =
            "a build logic input of type '${obtainedValue.valueSourceType.simpleName}' failed when storing the entry with $failure"
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top