Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,386 for logic (0.05 sec)

  1. pkg/registry/networking/networkpolicy/strategy.go

    	"k8s.io/kubernetes/pkg/apis/networking"
    	"k8s.io/kubernetes/pkg/apis/networking/validation"
    )
    
    // networkPolicyStrategy implements verification logic for NetworkPolicies
    type networkPolicyStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating NetworkPolicy objects.
    var Strategy = networkPolicyStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. pkg/registry/node/runtimeclass/strategy.go

    	"k8s.io/kubernetes/pkg/apis/node"
    	"k8s.io/kubernetes/pkg/apis/node/validation"
    )
    
    // strategy implements verification logic for RuntimeClass.
    type strategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating RuntimeClass objects.
    var Strategy = strategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 09 08:17:32 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top