Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 620 for logic (0.07 sec)

  1. pkg/registry/admissionregistration/validatingwebhookconfiguration/strategy.go

    	"k8s.io/kubernetes/pkg/apis/admissionregistration/validation"
    )
    
    // validatingWebhookConfigurationStrategy implements verification logic for validatingWebhookConfiguration.
    type validatingWebhookConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating validatingWebhookConfiguration objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. releasenotes/notes/cni-no-sh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 48746
    releaseNotes:
      - |
        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
  3. build-logic-settings/settings.gradle.kts

            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    include("build-environment")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 891 bytes
    - Viewed (0)
  4. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

            group = "verification"
            dependsOn(
                gradle.includedBuild("build-logic-commons").task(":check"),
                gradle.includedBuild("build-logic").task(":check"),
                ":docs:checkstyleApi",
                ":internal-build-reports:allIncubationReportsZip",
                ":architecture-test:checkBinaryCompatibility",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. pkg/registry/storage/volumeattachment/strategy.go

    )
    
    // volumeAttachmentStrategy implements behavior for VolumeAttachment objects
    type volumeAttachmentStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // VolumeAttachment objects via the REST API.
    var Strategy = volumeAttachmentStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 06 21:19:19 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. pkg/controller/deployment/recreate.go

    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/deployment/util"
    )
    
    // rolloutRecreate implements the logic for recreating a replica set.
    func (dc *DeploymentController) rolloutRecreate(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet, podMap map[types.UID][]*v1.Pod) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/test/mockopenidserver.go

    	// to simulate network errors and test the retry logic in jwks resolver for public key fetch.
    	ReturnErrorForFirstNumHits uint64
    
    	// The mock server will start to return an error after the first number of hits for public key,
    	// this is used to simulate network errors and test the refresh logic in jwks resolver.
    	ReturnErrorAfterFirstNumHits uint64
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. build-logic/jvm/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to configure conventions used by Kotlin, Java and Groovy projects to build Gradle"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":dependency-modules"))
    
        implementation("org.eclipse.jgit:org.eclipse.jgit")
        implementation("org.jsoup:jsoup")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 775 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/sanityCheck.sample.conf

    },{
        execution-subdirectory: aggregation
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: android-app
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: build-logic
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: domain-model
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: platforms
        executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 835 bytes
    - Viewed (0)
  10. test/typeparam/issue49659b.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Testing that AddrTaken logic doesn't cause problems for function instantiations
    
    package main
    
    type A[T interface{ []int | [5]int }] struct {
    	val T
    }
    
    //go:noinline
    func (a A[T]) F() {
    	_ = &a.val[2]
    }
    
    func main() {
    	var x A[[]int]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 492 bytes
    - Viewed (0)
Back to top