Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 401 for satisfies (0.98 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PathMatcher.java

        /**
         * Returns the maximum number of segments a path must have to satisfy this matcher.
         */
        int getMaxSegments();
    
        /**
         * Returns true if the path starting at the given offset satisfies this pattern.
         */
        boolean matches(String[] segments, int startIndex);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcherTest.groovy

    import org.gradle.plugins.ide.eclipse.model.internal.DefaultResourceFilterMatcher
    import spock.lang.Specification
    
    public class ResourceFilterMatcherTest extends Specification {
        def "ResourceFilterMatcher equals and hashCode satisfies contract"() {
            when:
            EqualsVerifier.forClass(DefaultResourceFilterMatcher.class)
                    .suppress(Warning.NONFINAL_FIELDS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/specs/ExplainingSpecs.java

            @Override
            public boolean isSatisfiedBy(Object element) {
                return false;
            }
            @Override
            public String whyUnsatisfied(Object element) {
                return "Never satisfies any.";
            }
        };
    
        public static <T> ExplainingSpec<T> satisfyNone() {
            return Cast.uncheckedNonnullCast(SATISFIES_NONE);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 20 10:28:05 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/error.go

    )
    
    // Error is the generic type for any error happening during tag
    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. internal/bucket/versioning/error.go

    )
    
    // Error is the generic type for any error happening during tag
    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ResourceFilterTest.groovy

    import org.gradle.plugins.ide.eclipse.model.internal.DefaultResourceFilterMatcher
    import spock.lang.Specification
    
    public class ResourceFilterTest extends Specification {
        def "ResourceFilter equals and hashCode satisfies contract"() {
            when:
            EqualsVerifier.forClass(DefaultResourceFilter.class)
                    .suppress(Warning.NONFINAL_FIELDS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. internal/bucket/replication/error.go

    )
    
    // Error is the generic type for any error happening during tag
    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/translatinghandler.go

    package proxy
    
    import (
    	"net/http"
    
    	"k8s.io/klog/v2"
    )
    
    // translatingHandler wraps the delegate handler, implementing the
    // http.Handler interface. The delegate handles all requests unless
    // the request satisfies the passed "shouldTranslate" function
    // (currently only for WebSocket/V5 request), in which case the translator
    // handles the request.
    type translatingHandler struct {
    	delegate        http.Handler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/runtime/import_test.go

    //
    // 1. Tests use the signature "XTest<name>(t TestingT)". Since runtime can't import
    // testing, test functions can't use testing.T, so instead we have the T
    // interface, which *testing.T satisfies. And we start names with "XTest"
    // because otherwise go test will complain about Test functions with the wrong
    // signature. To actually expose these as test functions, this file contains
    // trivial wrappers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

                'org:c:2.0' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
            then:
            failure.assertHasCause """Cannot find a version of 'org:c' that satisfies the version constraints:
       Dependency path ':test:unspecified' --> 'org:c:2.0'
       Dependency path ':test:unspecified' --> 'org:a:1.0' (runtime) --> 'org:c:{strictly 1.0}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top