Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,879 for forSet (0.37 sec)

  1. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	err := c.syncHandler(key)
    	if err == nil {
    		// if you had no error, tell the queue to stop tracking history for your key.  This will
    		// reset things like failure counts for per-item rate limiting
    		c.queue.Forget(key)
    		return true
    	}
    
    	// there was a failure so be sure to report it.  This method allows for pluggable error handling
    	// which can be used for things like cluster-monitoring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. pkg/test/csrctrl/authority/policies.go

    )
    
    // SigningPolicy validates a CertificateRequest before it's signed by the
    // CertificateAuthority. It may default or otherwise mutate a certificate
    // template.
    type SigningPolicy interface {
    	// not-exporting apply forces signing policy implementations to be internal
    	// to this package.
    	apply(template *x509.Certificate) error
    }
    
    // PermissiveSigningPolicy is the signing policy historically used by the local
    // signer.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. pkg/controller/servicecidrs/servicecidrs_controller.go

    	if err == nil {
    		c.queue.Forget(key)
    		return true
    	}
    	logger := klog.FromContext(ctx)
    	if c.queue.NumRequeues(key) < maxRetries {
    		logger.V(2).Info("Error syncing ServiceCIDR, retrying", "ServiceCIDR", key, "err", err)
    		c.queue.AddRateLimited(key)
    	} else {
    		logger.Info("Dropping ServiceCIDR out of the queue", "ServiceCIDR", key, "err", err)
    		c.queue.Forget(key)
    		utilruntime.HandleError(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        selectedByRule()
                        forced()
                        module("org.utils:api:1.3") {
                            selectedByRule()
                            forced()
                        }
                    }
                }
            }
        }
    
        void "forced modules and rules coexist"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

     *     preferProjectModules()
     *
     *     // force certain versions of dependencies (including transitive)
     *     //  *append new forced modules:
     *     force 'asm:asm-all:3.3.1', 'commons-io:commons-io:1.4'
     *     //  *replace existing forced modules with new ones:
     *     forcedModules = ['asm:asm-all:3.3.1']
     *
     *     // add dependency substitution rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

                thread.blockUntil.startAction
                coordinator.requestForcefulStop("stop")
                def result = coordinator.awaitStop()
                instant.idle
                assert result == DaemonStopState.Forced
            }
    
            then:
            thrown(DaemonStoppedException)
            forceStopped
            instant.idle < instant.finishAction
    
            and:
            1 * onStartCommand.run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    implementation("org.gradle.test:lib2:1.0")
                    configurations.all {
                        resolutionStrategy {
                            force(libs.myLib)
                            force(libs.myLib.subgroup)
                        }
                    }
                }
    
                tasks.register<CheckDeps>("checkDeps") {
                    files.from(configurations.compileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	if err == nil {
    		c.queue.Forget(key)
    		return
    	}
    
    	if c.queue.NumRequeues(key) < maxRetries {
    		logger.Info("Error mirroring EndpointSlices for Endpoints, retrying", "key", key, "err", err)
    		c.queue.AddRateLimited(key)
    		return
    	}
    
    	logger.Info("Retry budget exceeded, dropping Endpoints out of the queue", "key", key, "err", err)
    	c.queue.Forget(key)
    	utilruntime.HandleError(err)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/net/dnsconfig_unix.go

    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    					// https://www.freebsd.org/cgi/man.cgi?query=resolv.conf&sektion=5&manpath=freebsd-release-ports
    					// https://man.openbsd.org/resolv.conf.5
    					conf.useTCP = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/runtime/rwmutex_test.go

    		<-cdone
    	}
    }
    
    func TestParallelRWMutexReaders(t *testing.T) {
    	if GOARCH == "wasm" {
    		t.Skip("wasm has no threads yet")
    	}
    	defer GOMAXPROCS(GOMAXPROCS(-1))
    	// If runtime triggers a forced GC during this test then it will deadlock,
    	// since the goroutines can't be stopped/preempted.
    	// Disable GC for this test (see issue #10958).
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 22:00:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top