Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,556 for specs_ (0.09 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

    import org.gradle.api.internal.artifacts.ivyservice.NamespaceId
    import org.gradle.api.internal.artifacts.ivyservice.modulecache.ModuleSourcesSerializer
    import org.gradle.api.specs.Specs
    import org.gradle.cache.internal.DefaultInMemoryCacheDecoratorFactory
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.internal.action.ConfigurableRule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            final Bean bean3 = new Bean("b3");
    
            when:
            Spec<Bean> spec = { it != bean } as Spec<Bean>
            Spec<Bean> spec2 = {it != bean2 } as Spec<Bean>
    
            container.add(bean);
            container.add(bean2);
            container.add(bean3);
    
            then:
            container.matching(spec).matching(spec2) as List == [bean3]
        }
    
        def canGetDomainObjectByName() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/api/specs/NotSpec.java

     */
    package org.gradle.api.specs;
    
    /**
     * A {@link org.gradle.api.specs.Spec} implementation which negates another {@code Spec}.
     * 
     * @param <T> The target type for this Spec
     */
    public class NotSpec<T> implements Spec<T> {
        private Spec<? super T> sourceSpec;
    
        public NotSpec(Spec<? super T> sourceSpec) {
            this.sourceSpec = sourceSpec;
        }
    
        Spec<? super T> getSourceSpec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.NonNullApi;
    import org.gradle.api.Task;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.resources.ResourceLockCoordinationService;
    
    import java.util.AbstractCollection;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DelegatingDomainObjectSet.java

            return delegate;
        }
    
        @Override
        public DomainObjectSet<T> matching(Closure spec) {
            return matching(Specs.convertClosureToSpec(spec));
        }
    
        @Override
        public DomainObjectSet<T> matching(Spec<? super T> spec) {
            return delegate.matching(spec);
        }
    
        @Override
        public <S extends T> DomainObjectSet<S> withType(Class<S> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 01:39:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolverSpec.groovy

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ArtifactVisitor
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import org.gradle.api.specs.Specs
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    import spock.lang.Specification
    
    class ShortCircuitEmptyConfigurationResolverSpec extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/specs/ExplainingSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.specs;
    
    import org.gradle.api.specs.Spec;
    
    /**
     * A predicate against objects of type T that can explain the unsatisfied reason.
     *
     * @param <T> The target type for this Spec
     */
    public interface ExplainingSpec<T> extends Spec<T> {
    
        /**
         * Explains why the spec is not satisfied.
         *
         * @param element candidate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	switch {
    	case b&128 != 0:
    		// Indexed representation.
    		// High bit set?
    		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.1
    		return d.parseFieldIndexed()
    	case b&192 == 64:
    		// 6.2.1 Literal Header Field with Incremental Indexing
    		// 0b10xxxxxx: top two bits are 10
    		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.2.1
    		return d.parseFieldLiteral(6, indexedTrue)
    	case b&240 == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/TestTls13Request.kt

        }
      } finally {
        client.dispatcher.executorService.shutdownNow()
        client.connectionPool.evictAll()
      }
    }
    
    private fun buildClient(vararg specs: ConnectionSpec): OkHttpClient {
      return OkHttpClient.Builder()
        .connectionSpecs(listOf(*specs))
        .build()
    }
    
    private fun sendRequest(
      client: OkHttpClient,
      url: String,
    ) {
      System.out.printf("%-40s ", url)
      System.out.flush()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   appended. This expresses the fact that user-provided specs take precedence.
    // * Preset unspecified
    //   - No-op.
    QuantizationConfig ExpandPresets(const QuantizationConfig& config);
    
    // Returns whether a given QuantizationSpecs has the given quantization method.
    bool HasQuantizationMethod(const QuantizationSpecs& specs,
                               Method::MethodCase method_case);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top