Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 371 for varints (0.14 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. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

      - bar
      - foo
    All of them match the consumer attributes:
      - Variant 'bar' capability com.acme.external:external:2.0-SNAPSHOT declares attribute 'flavor' with value 'blue'
      - Variant 'foo' capability com.acme.external:external:2.0-SNAPSHOT declares attribute 'flavor' with value 'red'""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/dist/test.go

    }
    
    // testName returns the dist test name for a given package and variant.
    func testName(pkg, variant string) string {
    	name := pkg
    	if variant != "" {
    		name += ":" + variant
    	}
    	return name
    }
    
    // goTest represents all options to a "go test" command. The final command will
    // combine configuration from goTest and tester flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	HandSize int32 `json:"handSize" protobuf:"varint,2,opt,name=handSize"`
    
    	// `queueLengthLimit` is the maximum number of requests allowed to
    	// be waiting in a given queue of this priority level at a time;
    	// excess requests are rejected.  This value must be positive.  If
    	// not specified, it will be defaulted to 50.
    	// +optional
    	QueueLengthLimit int32 `json:"queueLengthLimit" protobuf:"varint,3,opt,name=queueLengthLimit"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top