Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for touches (0.2 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    	if hasStaleOwnerRef(claim, set, controllerKind) || hasStaleOwnerRef(claim, pod, podKind) {
    		// The claim is being managed by previous, presumably deleted, version of the controller. It should not be touched.
    		return true
    	}
    
    	if hasUnexpectedController(claim, set, pod) {
    		if hasOwnerRef(claim, set) || hasOwnerRef(claim, pod) {
    			return false // Need to clean up the conflicting controllers
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		fmt.Printf("[upgrade/etcd] Failed to upgrade etcd: %v\n", err)
    		// Since upgrade component failed, the old etcd manifest has either been restored or was never touched
    		// Now we need to check the health of etcd cluster if it is up with old manifest
    		fmt.Println("[upgrade/etcd] Waiting for previous etcd to become available")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/types.go

    	// in an immediate IPVS resync.
    	MinSyncPeriod metav1.Duration
    	// scheduler is the IPVS scheduler to use
    	Scheduler string
    	// excludeCIDRs is a list of CIDRs which the ipvs proxier should not touch
    	// when cleaning up ipvs services.
    	ExcludeCIDRs []string
    	// strictARP configures arp_ignore and arp_announce to avoid answering ARP queries
    	// from kube-ipvs0 interface
    	StrictARP bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Source code and build logic of every software project should be organized in a meaningful way.
    This page lays out the best practices that lead to readable, maintainable projects.
    The following sections also touch on common problems and how to avoid them.
    
    [[sec:separate_language_source_files]]
    == Separate language-specific source files
    
    Gradle's language plugins establish conventions for discovering and compiling source code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableMap.java

            table[tableIndex] = effectiveEntry;
          } else {
            // We already saw this key, and the first value we saw (going backwards) is the one we are
            // keeping. So we won't touch table[], but we do still want to add the existing entry that
            // we found to entries[] so that we will see this key in the right place when iterating.
            if (duplicates == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            buildFile << """
                task execStartScript(type: Exec) {
                    workingDir 'build/install/sample/bin'
                    commandLine './sample'
                    environment ${envVar}: '`\$(touch "${exploit.absolutePath}")`'
                }
            """
            fails('execStartScript')
    
            then:
            result.assertTaskExecuted(":execStartScript")
            !exploit.exists()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        }
    
        def 'application ids are unique across gradleBuild builds'() {
            given:
            initFile << ""
            file('gb/settings.gradle').touch()
            file('gb/build.gradle') << ""
            buildFile << """
                tasks.help.dependsOn tasks.create('gb', GradleBuild) { gbTask ->
                    dir = 'gb'
                    gbTask.tasks = ['help']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    		// (0, N). These are the most dangerous lines in the package and maybe in
    		// the library: a single bit of bias in the selection of nonces would likely
    		// lead to key recovery, but no tests would fail. Look but DO NOT TOUCH.
    		if excess := len(b)*8 - c.N.BitLen(); excess > 0 {
    			// Just to be safe, assert that this only happens for the one curve that
    			// doesn't have a round number of bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/syscall/exec_linux.go

    	// Defined in linux/prctl.h starting with Linux 4.3.
    	const (
    		PR_CAP_AMBIENT       = 0x2f
    		PR_CAP_AMBIENT_RAISE = 0x2
    	)
    
    	// vfork requires that the child not touch any of the parent's
    	// active stack frames. Hence, the child does all post-fork
    	// processing in this stack frame and never returns, while the
    	// parent returns immediately from this frame and does all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                dependencies {
                    add("defaultDependencies", project(":producer"))
                }
    
                ${forceConsumerResolution()}
            """
    
            file("producer/build.gradle.kts").touch()
        }
    
        private void setupIncompatibleRequestedConfigurationFailureForProject() {
            buildKotlinFile <<  """
                plugins {
                    id("base")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top