Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,879 for forSet (0.11 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/ProcessWorkerSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    /**
     * A worker spec providing the requirements of a forked process with a custom classpath.
     *
     * @since 5.6
     */
    public interface ProcessWorkerSpec extends ForkingWorkerSpec, ClassLoaderWorkerSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 849 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-forceForConfiguration/tests/force-per-configuration.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

                        parameters.outputFile.set(outputFile)
                    }
    
                    // forces the service to be initialized immediately when configuration cache loads its cache
                    gradle.services.get(BuildEventListenerRegistryInternal).onOperationCompletion(outputProgress)
    
                    // forces the service to be initialized immediately
                    outputProgress.get()
                }
           """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-enforcedConstraintsFromBOM/tests/forced-platform-from-bom.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

        WHEEL_MEGABYTES=$(stat --format %s "$TF_WHEEL" | awk '{print int($1/(1024*1024))}')
        # Googlers: search for "test_tf_whl_size"
        case "$TF_WHEEL" in
            # CPU:
            *cpu*manylinux*) LARGEST_OK_SIZE=220 ;;
            # GPU:
            *manylinux*)     LARGEST_OK_SIZE=580 ;;
            # Unknown:
            *)
                echo "The wheel's name is in an unknown format."
                exit 1
                ;;
        esac
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/testing/allocs.go

    	for i := 0; i < runs; i++ {
    		f()
    	}
    
    	// Read the final statistics
    	runtime.ReadMemStats(&memstats)
    	mallocs += memstats.Mallocs
    
    	// Average the mallocs over the runs (not counting the warm-up).
    	// We are forced to return a float64 because the API is silly, but do
    	// the division as integers so we can ask if AllocsPerRun()==1
    	// instead of AllocsPerRun()<2.
    	return float64(mallocs / uint64(runs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

                sync.releaseAll()
                resultHandler.finished()
            }
    
            then:
            noExceptionThrown()
        }
    
        def "can cancel build through forced stop"() {
            // in-process call does not support forced stop
            toolingApi.requireDaemons()
            buildFile << """
    task hang {
        doLast {
            ${server.callFromBuild("waiting")}
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. pkg/controller/validatingadmissionpolicystatus/controller.go

    				// If not found, the policy is being deleting, do nothing.
    				return nil
    			}
    			return err
    		}
    		return c.reconcile(ctx, policy)
    	}()
    
    	if err == nil {
    		c.policyQueue.Forget(key)
    		return true
    	}
    
    	utilruntime.HandleError(err)
    	c.policyQueue.AddRateLimited(key)
    
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. security/pkg/credentialfetcher/plugin/gce_test.go

    	testCases := map[string]struct {
    		jwt           string
    		jwtPath       string
    		expectedToken string
    		expectedCall  int
    	}{
    		// mock metadata server returns an expired token, that forces rotation job
    		// to fetch new token during each rotation.
    		"expired token needs rotation": {
    			jwt:           thirdPartyJwt,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/fipstls/tls.go

    	"internal/stringslite"
    	"sync/atomic"
    )
    
    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    // By design, this call is impossible to undo (except in tests).
    //
    // Note that this call has an effect even in programs using
    // standard crypto (that is, even when Enabled = false).
    func Force() {
    	required.Store(true)
    }
    
    // Abandon allows non-FIPS-approved settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top