Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,042 for Allows (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/composite/internal/BuildTreeWorkGraphController.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nonnull;
    import javax.annotation.meta.When;
    import java.util.function.Function;
    
    /**
     * A service that allows work graphs to be created, populated and executed.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildTreeWorkGraphController {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/internal/ScalaRuntimeHelperTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.scala.internal
    
    import spock.lang.Specification
    
    class ScalaRuntimeHelperTest extends Specification {
        def "allows to find Scala Jar on class path"() {
            when:
            def file = ScalaRuntimeHelper.findScalaJar([new File("other.jar"), new File("scala-jdbc-1.5.jar"), new File("scala-compiler-1.7.jar")], "jdbc")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskPropertiesService.java

    import org.gradle.api.tasks.testing.Test;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Provides access to the configuration of {@link Test} tasks and allows
     * disabling storing their outputs in the build cache.
     */
    @ServiceScope(Scope.Project.class)
    public interface TestTaskPropertiesService {
    
        /**
         * Collect the configuration of the given task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. docs/metrics/README.md

    Read more on how to use these endpoints in [MinIO healthcheck guide](https://github.com/minio/minio/blob/master/docs/metrics/healthcheck/README.md).
    
    ## Prometheus Probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FunctionSemantics.kt

                interface Required : ConfigureBlockRequirement
    
                val allows: Boolean
                    get() = this !is NotAllowed
    
                val requires: Boolean
                    get() = this is Required
    
                fun isValidIfLambdaIsPresent(isPresent: Boolean): Boolean = when {
                    isPresent -> allows
                    else -> !requires
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:43:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    func NewMockManager(ctrl *gomock.Controller) *MockManager {
    	mock := &MockManager{ctrl: ctrl}
    	mock.recorder = &MockManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockManager) EXPECT() *MockManagerMockRecorder {
    	return m.recorder
    }
    
    // IsUnderDiskPressure mocks base method.
    func (m *MockManager) IsUnderDiskPressure() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/encoding/binary/60023.md

    The new [Encode] and [Decode] functions are byte slice equivalents
    to [Read] and [Write].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:58:26 UTC 2024
    - 157 bytes
    - Viewed (0)
  8. pkg/flag/flag.go

    	case *time.Duration:
    		fs.DurationVarP(d, name, shorthand, *d, usage)
    	case *uint16:
    		fs.Uint16VarP(d, name, shorthand, *d, usage)
    	}
    }
    
    // BindEnv behaves like Bind, but additionally allows an environment variable to override.
    // This will transform to name field: foo-bar becomes FOO_BAR.
    func BindEnv[T Flaggable](fs *pflag.FlagSet, name, shorthand, usage string, val *T) {
    	Bind(fs, name, shorthand, usage, val)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pkg/kube/kubetypes/types.go

    	// Namespace to watch.
    	// This is a *server side* filter.
    	Namespace string
    	// ObjectFilter allows arbitrary filtering logic.
    	// This is a *client side* filter. This means CPU/memory costs are still present for filtered objects.
    	// Use LabelSelector or FieldSelector instead, if possible.
    	ObjectFilter DynamicObjectFilter
    	// ObjectTransform allows arbitrarily modifying objects stored in the underlying cache.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         */
        ClassLoader getLocalClassLoader();
    
        /**
         * The classloader for use by child nodes.
         * <p>
         * Contains exported classes of the parent scope and all local and exported additions to this scope.
         * It is strongly preferable to only call this after {@link #lock() locking} the scope as it allows the structure to be optimized.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top