Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for varints (0.2 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentResultSerializerTest.groovy

            result.selectionReason == ComponentSelectionReasons.requested()
            result.moduleVersion == newId('org', 'foo', '2.0')
            for (def variants : [result.selectedVariants, result.availableVariants]) {
                variants.size() == 2
                variants[0] == v1Result
                variants[1] == v2Result
            }
            result.repositoryId == 'repoName'
        }
    
        private byte[] serialize(ResolvedGraphComponent component) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_optionals.mlir

          f = @identity} : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
      %2 = "tf.OptionalGetValue"(%1) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<f32>
      %3 = "tf.OptionalNone"() : () -> tensor<!tf_type.variant<tensor<f32>>>
      return %2, %3 : tensor<f32>, tensor<!tf_type.variant<tensor<f32>>>
    }
    
    func.func private @identity(%arg0: tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/MultiParentClassLoader.java

            super(null);
            this.parents = new CopyOnWriteArrayList<ClassLoader>(parents);
        }
    
        public void addParent(ClassLoader parent) {
            parents.add(parent);
        }
    
        public List<ClassLoader> getParents() {
            return ImmutableList.copyOf(parents);
        }
    
        @Override
        public void visit(ClassLoaderVisitor visitor) {
            visitor.visitSpec(new Spec());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

        AttributeContainer getAttributes();
    
        /**
         * Mutates the attributes of this dependency. Attributes are used during dependency resolution to select the appropriate
         * target variant, in particular when a single component provides different variants.
         *
         * @param configureAction the attributes mutation action
         * @return this
         *
         * @since 4.8
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            public ClassLoader transform(ClassLoaderDetails details) {
                List<ClassLoader> parents = new ArrayList<ClassLoader>();
                for (ClassLoaderDetails parentDetails : details.parents) {
                    parents.add(getClassLoader(parentDetails));
                }
                if (parents.isEmpty()) {
                    parents.add(classLoaderFactory.getClassLoaderFor(SystemClassLoaderSpec.INSTANCE, ImmutableList.of()));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/runtime/traceallocfree.go

    	if flushed {
    		// Annotate the batch as containing additional info.
    		w.byte(byte(traceAllocFreeInfoBatch))
    	}
    
    	// Emit info.
    	w.varint(uint64(trace.minPageHeapAddr))
    	w.varint(uint64(pageSize))
    	w.varint(uint64(minHeapAlign))
    	w.varint(uint64(fixedStack))
    
    	// Finish writing the batch.
    	w.flush().end()
    
    	// Start tracing.
    	trace := traceAcquire()
    	if !trace.ok() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactory.java

        @Override
        public ClassLoader getClassLoaderFor(ClassLoaderSpec spec, List<? extends ClassLoader> parents) {
            if (spec instanceof ClientOwnedClassLoaderSpec) {
                ClientOwnedClassLoaderSpec clientSpec = (ClientOwnedClassLoaderSpec) spec;
                return createClassLoaderForClassPath("client-owned-daemon-payload-loader", parents, urls(clientSpec.getClasspath()));
            }
            if (spec instanceof VisitableURLClassLoader.Spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            return this;
        }
    
        public ServiceRegistry build() {
            ServiceRegistry[] parents = this.parents.toArray(new ServiceRegistry[0]);
    
            DefaultServiceRegistry registry = scope != null
                ? new ScopedServiceRegistry(scope, strict, displayName, parents)
                : new DefaultServiceRegistry(displayName, parents);
    
            for (ServiceRegistrationProvider provider : providers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: isolation-istio.gateway-conformance-infra.svc.domain.suffix
        internal.istio.io/parents: Gateway/isolation/empty-hostname.gateway-conformance-infra
      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
      servers:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/attributes.mlir

      func.return
    }
    
    // CHECK-LABEL: func @variant
    func.func @variant(%arg: tensor<!tf_type.variant>) {
      // CHECK: tf.ZerosLike
      // CHECK-SAME: T = !corert.variant
      %0 = "tf.ZerosLike"(%arg) {device = "/device:CPU:0", T = !tf_type.variant} : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant>
      func.return
    }
    
    // Checks that TF quantized attrs are lowered to the corert types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top