Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for has_one (0.19 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaPluginIntegTest.groovy

                dependency('org', 'optionaldep', '1.0')
                noMoreDependencies()
            }
            javaLibrary.parsedIvy.dependencies.size() == 1
            javaLibrary.parsedIvy.dependencies['org:optionaldep:1.0'].hasConf('featureRuntimeElements->default')
    
            and:
            resolveArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
            resolveApiArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

    
        @Override
        public void reset () {
            super.reset();
            this.isPrimary = this.hasMore = true;
        }
    
    
        protected void reset ( int key, String lastName ) {
            reset();
        }
    
    
        @Override
        public boolean hasMoreElements () {
            return this.hasMore;
        }
    
    
        @Override
        public SmbComTransaction nextElement () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  3. src/net/netip/inlining_test.go

    		got[strings.TrimPrefix(string(match), " can inline ")] = true
    		return nil
    	})
    	wantInlinable := []string{
    		"(*uint128).halves",
    		"Addr.BitLen",
    		"Addr.hasZone",
    		"Addr.Is4",
    		"Addr.Is4In6",
    		"Addr.Is6",
    		"Addr.IsInterfaceLocalMulticast",
    		"Addr.IsValid",
    		"Addr.IsUnspecified",
    		"Addr.Less",
    		"Addr.Unmap",
    		"Addr.Zone",
    		"Addr.v4",
    		"Addr.v6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

            secondaryParameterOffset = SECONDARY_PARAMETER_OFFSET;
        }
    
        void reset() {
            super.reset();
            isPrimary = hasMore = true; 
        }
        void reset( int key, String lastName ) {
            reset();
        }
        public boolean hasMoreElements() {
            return hasMore;
        }
        public Object nextElement() {
            if( isPrimary ) {
                isPrimary = false;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorDependency.groovy

        String org
        String module
        String revision
        String revisionConstraint
        Set<String> confs
        String transitive
        Collection<IvyDescriptorDependencyExclusion> exclusions = []
    
        boolean hasConf(String conf) {
            this.confs.contains(conf)
        }
    
        boolean transitiveEnabled() {
            transitive != 'false'
        }
    
        boolean hasExcludes() {
            exclusions
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorArtifact.groovy

            assert this.ext == ext
            assert this.type == type
            assert this.conf == conf
            assert this.classifier == classifier
        }
    
        IvyDescriptorArtifact hasConf(def conf) {
            assert this.conf == conf
            return this
        }
    
        IvyDescriptorArtifact hasType(def type) {
            assert this.type == type
            return this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. association.go

    	}
    	return association.Error
    }
    
    func (association *Association) Append(values ...interface{}) error {
    	if association.Error == nil {
    		switch association.Relationship.Type {
    		case schema.HasOne, schema.BelongsTo:
    			if len(values) > 0 {
    				association.Error = association.Replace(values...)
    			}
    		default:
    			association.saveAssociation( /*clear*/ false, values...)
    		}
    	}
    
    	return association.Error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

            class BinaryTasksPlugin extends RuleSource {
                @BinaryTasks
                void createTasks(ModelMap<Task> tasks, SampleBinary binary) {
                    tasks.create("\${binary.projectScopedName}TaskOne"){
                        it.doLast{
                            println "running \${it.name}"
                        }
                    }
                    tasks.create("\${binary.projectScopedName}TaskTwo"){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

                String key = StringUtils.substringBefore(it, "@")
                String conf = StringUtils.substringAfter(it, "@") + "->default"
                assert dependencies.containsKey(key)
                assert dependencies[key].hasConf(conf)
            }
            true
        }
    
        def assertConfigurationDependsOn(String configuration, String[] expected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. cmd/callhome.go

    				DeploymentID: globalDeploymentID(),
    			},
    		},
    	}
    
    	go fetchHealthInfo(healthCtx, objectAPI, &query, healthInfoCh, healthInfo)
    
    	for {
    		select {
    		case hi, hasMore := <-healthInfoCh:
    			if !hasMore {
    				auditOptions := AuditLogOptions{Event: "callhome:diagnostics"}
    				// Received all data. Send to SUBNET and return
    				err := sendHealthInfo(ctx, healthInfo)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 16:53:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top