Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 430 for deflate (0.13 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedAsProjectPluginIntegrationTest.groovy

            failure.assertHasCause('''Type MyPlugin.Rules is not a valid rule source:
    - Enclosed classes must be static and non private
    - Cannot declare a constructor that takes arguments''')
        }
    
        def "informative error message when two plugins declare model at the same path"() {
            when:
            buildScript """
                class MyPlugin {
                    static class Rules extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    	case 'A':
    		typ := r.typ()
    
    		r.declare(types.NewTypeName(pos, r.currPkg, name, typ))
    
    	case 'C':
    		typ, val := r.value()
    
    		r.declare(types.NewConst(pos, r.currPkg, name, typ, val))
    
    	case 'F', 'G':
    		var tparams []*types.TypeParam
    		if tag == 'G' {
    			tparams = r.tparamList()
    		}
    		sig := r.signature(nil, nil, tparams)
    		r.declare(types.NewFunc(pos, r.currPkg, name, sig))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    However, imagine that you need the _runtime_ and the _test fixtures runtime_ of a component.
    Then it is allowed as long as the _runtime_ and _test fixtures runtime_ variant of the library declare different capabilities.
    
    If we do so, a consumer would then have to declare two dependencies:
    
    - one on the "main" feature, the library
    - one on the "test fixtures" feature, by _requiring its capability_
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                        consumer,
                        producer
                    ))
                    .solution("Declare task '" + producer + "' as an input of '" + consumer + "'")
                    .solution("Declare an explicit dependency on '" + producer + "' from '" + consumer + "' using Task#dependsOn")
                    .solution("Declare an explicit dependency on '" + producer + "' from '" + consumer + "' using Task#mustRunAfter")
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pom.xml

    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    				<artifactId>dbflute-maven-plugin</artifactId>
    				<configuration>
    					<dbfluteVersion>${dbflute.version}</dbfluteVersion>
    					<packageBase>org.codelibs.fess.dbflute</packageBase>
    					<clientProject>fess</clientProject>
    					<dbfluteClientDir>${basedir}/dbflute_fess</dbfluteClientDir>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Possible solutions:
      1. Declare task 'producer' as an input of 'consumer'.
      2. Declare an explicit dependency on 'producer' from 'consumer' using Task#dependsOn.
      3. Declare an explicit dependency on 'producer' from 'consumer' using Task#mustRunAfter.
    
    ${validationMessage("implicit_dependency")}
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/ureader.go

    			val := r.Value()
    			declare(types.NewConst(pos, objPkg, objName, typ, val))
    
    		case pkgbits.ObjFunc:
    			pos := r.pos()
    			tparams := r.typeParamNames()
    			sig := r.signature(nil, nil, tparams)
    			declare(types.NewFunc(pos, objPkg, objName, sig))
    
    		case pkgbits.ObjType:
    			pos := r.pos()
    
    			obj := types.NewTypeName(pos, objPkg, objName, nil)
    			named := types.NewNamed(obj, nil, nil)
    			declare(obj)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

    import org.codelibs.fess.es.config.exentity.WebConfig;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.optional.OptionalThing;
    
    import com.google.common.cache.Cache;
    import com.google.common.cache.CacheBuilder;
    
    public class CrawlingConfigHelper {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

    }
    def classes = configurations.compile.outgoing.variants['classes']
    classes.attributes.keySet().collect { it.name } == ['usage', 'format']
    """
    
            expect:
            succeeds()
        }
    
        def "can declare build dependency of artifact using String notation"() {
            given:
            createDirs("a", "b")
            settingsFile << "include 'a', 'b'"
            buildFile << """
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar.go

    	host, err := canonicalHost(u.Host)
    	if err != nil {
    		return
    	}
    	key := jarKey(host, j.psList)
    	defPath := defaultPath(u.Path)
    
    	j.mu.Lock()
    	defer j.mu.Unlock()
    
    	submap := j.entries[key]
    
    	modified := false
    	for _, cookie := range cookies {
    		e, remove, err := j.newEntry(cookie, now, defPath, host)
    		if err != nil {
    			continue
    		}
    		id := e.id()
    		if remove {
    			if submap != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top