Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 625 for forced (0.15 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case REQUESTED:
                    return "Was requested";
                case SELECTED_BY_RULE:
                    return "Selected by rule";
                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    				obj: &certificatesapi.ClusterTrustBundle{
    					Spec: certificatesapi.ClusterTrustBundleSpec{
    						SignerName: "abc.com/xyz",
    					},
    				},
    				operation: admission.Update,
    			},
    			authzErr: errors.New("forced error"),
    			allowed:  false,
    		},
    		{
    			description:                      "should allow create if no signer name is specified",
    			clusterTrustBundleFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1, // can't downgrade two minor versions
    		},
    		{
    			name: "kubeadm version must be higher than the new kube version. However, patch version skews may be forced",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumKubeletVersion.WithPatch(3).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    	line with allocation), background GC time, and idle GC time.
    	If the line ends with "(forced)", this GC was forced by a
    	runtime.GC() call.
    
    	harddecommit: setting harddecommit=1 causes memory that is returned to the OS to
    	also have protections removed on it. This is the only mode of operation on Windows,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/podgc/gc_controller.go

    			utilruntime.HandleError(err)
    			metrics.DeletingPodsErrorTotal.WithLabelValues(pod.Namespace, metrics.PodGCReasonOrphaned).Inc()
    		} else {
    			logger.Info("Forced deletion of orphaned Pod succeeded", "pod", klog.KObj(pod))
    		}
    		metrics.DeletingPodsTotal.WithLabelValues(pod.Namespace, metrics.PodGCReasonOrphaned).Inc()
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug_test.go

    	}
    
    	if !*useGdb && !*force && testenv.Builder() == "linux-386-longtest" {
    		// The latest version of Delve does support linux/386. However, the version currently
    		// installed in the linux-386-longtest builder does not. See golang.org/issue/39309.
    		skipReasons += "not run when testing delve on linux-386-longtest builder unless forced (-f); "
    	}
    
    	if *useGdb {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        def "substitutes transitive dependency with forced version"() {
            given:
            mavenRepo.module("org.external", "external-dep", '1.0').dependsOn("org.test", "buildB", "1.0").publish()
    
            buildA.buildFile << """
                dependencies {
                    implementation "org.external:external-dep:1.0"
                }
                configurations.runtimeClasspath.resolutionStrategy.force("org.test:buildB:5.0")
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

      - Variant 'runtimeElements' contains a dependency on enforced platform 'org:platform'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/crypto/tls/boring_test.go

    			}
    			if _, _, err := testHandshake(t, clientConfig, serverConfig); err != nil {
    				t.Fatalf("got error: %v, expected success", err)
    			}
    
    			// With fipstls forced, bad curves should be rejected.
    			t.Run("fipstls", func(t *testing.T) {
    				fipstls.Force()
    				defer fipstls.Abandon()
    				_, _, err := testHandshake(t, clientConfig, serverConfig)
    				if err != nil && isBoringCurve(curveid) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top