Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for xdstype (0.14 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.2.xsd

                <xs:element type="trusted-keysType" name="trusted-keys"/>
                <xs:element type="key-serversType" name="key-servers"/>
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="md5Type" mixed="true">
            <xs:sequence>
                <xs:element type="also-trustType" name="also-trust" minOccurs="0"/>
            </xs:sequence>
            <xs:attribute type="xs:string" name="value" use="required"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/DelegatingMavenModule.java

        }
    
        @Override
        public T hasPackaging(String packaging) {
            backingModule.hasPackaging(packaging);
            return t();
        }
    
        @Override
        public T hasType(String type) {
            backingModule.hasType(type);
            return t();
        }
    
        @Override
        public T variant(String variant, Map<String, String> attributes) {
            backingModule.variant(variant, attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/net/http/cgi/child.go

    func (r *response) writeCGIHeader(p []byte) {
    	if r.wroteCGIHeader {
    		return
    	}
    	r.wroteCGIHeader = true
    	fmt.Fprintf(r.bufw, "Status: %d %s\r\n", r.code, http.StatusText(r.code))
    	if _, hasType := r.header["Content-Type"]; !hasType {
    		r.header.Set("Content-Type", http.DetectContentType(p))
    	}
    	r.header.Write(r.bufw)
    	r.bufw.WriteString("\r\n")
    	r.bufw.Flush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapCollectors.java

                Value<? extends V> value = providerOfValue.calculateValue(consumer);
                if (value.isMissing()) {
                    return value.asType();
                }
                collector.add(key, value.getWithoutSideEffect(), dest);
                return Value.present().withSideEffect(SideEffect.fixedFrom(value));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:22:39 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.3.xsd

                <xs:element type="trusted-keysType" name="trusted-keys" minOccurs="0"/>
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="md5Type" mixed="true">
            <xs:sequence>
                <xs:element type="also-trustType" name="also-trust" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 23:01:46 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeUtils.java

            return Type.getMethodDescriptor(
                extractReturnType(methodElement),
                methodElement.getParameters().stream().map(it -> extractType(it.asType())).toArray(Type[]::new)
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/proxy/util/nfacct/handler.go

    }
    
    // request is an injectable interface representing a netlink request.
    type request interface {
    	Serialize() []byte
    	AddData(data nl.NetlinkRequestData)
    	AddRawData(data []byte)
    	Execute(sockType int, resType uint16) ([][]byte, error)
    }
    
    // netlinkHandler is an implementation of the handler interface. It maintains a netlink socket
    // for communication with the NFAcct subsystem.
    type netlinkHandler struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomPackagingResolveIntegrationTest.groovy

            when:
            buildWithDependencies("""
    compile('group:projectA:1.0') {
        artifact {
            name = 'projectA'
            type = 'zip'
        }
    }
    """)
            projectARepo1.hasPackaging("custom").hasType("custom")
            projectARepo1.artifact(type: 'zip')
            projectARepo1.publish()
    
            and:
            projectARepo1.pom.expectGet()
            projectARepo1.artifact(type: 'zip').expectGet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaBuildingUtils.kt

            error("type $type used in a function is not in schema scope")
        }
    }
    
    
    private
    fun KClassifier.isInScope(typeScope: DataSchemaBuilder.PreIndex) =
        isBuiltInType || this is KClass<*> && typeScope.hasType(this)
    
    
    private
    val KClassifier.isBuiltInType: Boolean
        get() = when (this) {
            Int::class, String::class, Boolean::class, Long::class, Unit::class -> true
            else -> false
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_cache.go

    	serviceAccounts []string // contains all the service accounts associated with the service
    }
    
    func (t *clusterCache) Type() string {
    	return model.CDSType
    }
    
    func (t *clusterCache) Key() any {
    	// nolint: gosec
    	// Not security sensitive code
    	h := hash.New()
    	h.WriteString(t.clusterName)
    	h.Write(Separator)
    	h.WriteString(t.proxyVersion)
    	h.Write(Separator)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top