Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 619 for logic (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. samples/builder/README.md

    # Sample builder
    
    This folder contains docker image building logic for various samples, to consolidate things.
    Note some images still user per-folder config, so this is not complete.
    
    ## Building for testing
    
    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 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. 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)
  10. 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)
Back to top