Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 569 for logic (0.13 sec)

  1. build-logic/buildquality/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to configure quality checks (incubating report, CodeNarc, et al)"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":cleanup"))
        implementation(project(":documentation"))
        implementation(project(":integration-testing"))
        implementation(project(":performance-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package tainteviction contains the logic implementing taint-based eviction
    // for Pods running on Nodes with NoExecute taints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 723 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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