Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 272 for facility (0.21 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                "gradleEnvironmentVariables" to mapOf("myEnvVar" to "envValue")
            )
        }
    
        @Test
        fun `report file fatality on TAPI failure`() {
            // thus disabling syntax highlighting
    
            val editedScript = withBuildScript("")
    
            val wrongEnv = arrayOf("gradleHome" to existing("absent"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    This sample shows how to aggregate code coverage across multiple Java subprojects using link:https://www.jacoco.org/jacoco/[JaCoCo].  The link:{userManualPath}/jacoco_report_aggregation_plugin.html[jacoco-report-aggregation plugin] provides this ability via a standalone project used to specify _which_ subprojects to include for aggregation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    This sample shows how to aggregate test results across multiple Java subprojects.  The link:{userManualPath}/test_report_aggregation_plugin.html[test-report-aggregation plugin] provides this ability via a standalone project used to specify _which_ subprojects to include for aggregation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/extender.go

    	SupportsPreemption() bool
    
    	// IsIgnorable returns true indicates scheduling should not fail when this extender
    	// is unavailable. This gives scheduler ability to fail fast and tolerate non-critical extenders as well.
    	// Both Filter and Bind actions are supported.
    	IsIgnorable() bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/gover/toolchain.go

    }
    
    var ErrTooNew = errors.New("module too new")
    
    func (e *TooNewError) Is(err error) bool {
    	return err == ErrTooNew
    }
    
    // A Switcher provides the ability to switch to a new toolchain in response to TooNewErrors.
    // See [cmd/go/internal/toolchain.Switcher] for documentation.
    type Switcher interface {
    	Error(err error)
    	Switch(ctx context.Context)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementReplacingVisitorSupport.java

    import java.util.List;
    import java.util.ListIterator;
    
    import org.codehaus.groovy.ast.ClassCodeVisitorSupport;
    import org.codehaus.groovy.ast.stmt.*;
    import org.codehaus.groovy.control.SourceUnit;
    
    /**
     * Adds the ability to replace statements.
     */
    // Implementation note: It is only necessary to override visit methods
    // for AST nodes that reference statements. For ClosureExpression we rely on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/collect/MinMaxPriorityQueueBenchmark.java

     *
     * @author Sverre Sundsdal
     */
    public class MinMaxPriorityQueueBenchmark {
      @Param private ComparatorType comparator;
    
      // TODO(kevinb): add 1000000 back when we have the ability to throw
      // NotApplicableException in the expensive comparator case.
      @Param({"100", "10000"})
      private int size;
    
      @Param private HeapType heap;
    
      private Queue<Integer> queue;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/io_ops.cc

    //     "prefix", and
    //       if found proceed to read it as a V2 checkpoint;
    //     - Otherwise the V1 read path is invoked.
    //   Relying on this behavior is not recommended, as the ability to fall back to
    //   read V1 might be deprecated and eventually removed.
    //
    //   By default, restores the named tensors in full.  If the caller wishes to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. pilot/pkg/grpc/grpc.go

    		grpc.UnaryInterceptor(middleware.ChainUnaryServer(interceptors...)),
    		grpc.MaxConcurrentStreams(uint32(maxStreams)),
    		grpc.MaxRecvMsgSize(maxRecvMsgSize),
    		// Ensure we allow clients sufficient ability to send keep alives. If this is higher than client
    		// keep alive setting, it will prematurely get a GOAWAY sent.
    		grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
    			MinTime: options.Time / 2,
    		}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/discovery.go

    func For(cfg *kubeadmapi.JoinConfiguration) (*clientcmdapi.Config, error) {
    	// TODO: Print summary info about the CA certificate, along with the checksum signature
    	// we also need an ability for the user to configure the client to validate received CA cert against a checksum
    	config, err := DiscoverValidatedKubeConfig(cfg)
    	if err != nil {
    		return nil, errors.Wrap(err, "couldn't validate the identity of the API Server")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top