Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for uvarint (0.23 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	}
    
    	x := base.Ctxt.Lookup(s.curfn.LSym.Name + ".opendefer")
    	x.Set(obj.AttrContentAddressable, true)
    	s.curfn.LSym.Func().OpenCodedDeferInfo = x
    
    	off := 0
    	off = objw.Uvarint(x, off, uint64(-s.deferBitsTemp.FrameOffset()))
    	off = objw.Uvarint(x, off, uint64(-firstOffset))
    }
    
    // buildssa builds an SSA function for fn.
    // worker indicates which of the backend workers is doing the processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K 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. staging/src/k8s.io/api/batch/v1/types.go

    	// +optional
    	MaxFailedIndexes *int32 `json:"maxFailedIndexes,omitempty" protobuf:"varint,13,opt,name=maxFailedIndexes"`
    
    	// TODO enabled it when https://github.com/kubernetes/kubernetes/issues/28486 has been fixed
    	// Optional number of failed pods to retain.
    	// +optional
    	// FailedPodsLimit *int32 `json:"failedPodsLimit,omitempty" protobuf:"varint,9,opt,name=failedPodsLimit"`
    
    	// A label query over pods that should match the pod count.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentVariantIdentifier.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * Identifies a variant of a component by component identifier and variant name.
     *
     * @since 6.0
     */
    public interface ComponentVariantIdentifier {
    
        /**
         * Returns the component identifier.
         */
        ComponentIdentifier getId();
    
        /**
         * Returns the variant name.
         */
        String getVariantName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

    import org.gradle.internal.component.external.model.ImmutableCapabilities;
    
    import java.util.List;
    import java.util.Set;
    
    /**
     * Immutable metadata for a component variant instance that is used to perform dependency graph resolution.
     *
     * <p>Note that this metadata does not provide any information about the available artifacts of this variants, as this may be expensive to resolve.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. manifests/charts/ztunnel/values.yaml

    defaults:
      # Hub to pull from. Image will be `Hub/Image:Tag-Variant`
      hub: gcr.io/istio-testing
      # Tag to pull from. Image will be `Hub/Image:Tag-Variant`
      tag: latest
      # Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      variant: ""
    
      # Image name to pull from. Image will be `Hub/Image:Tag-Variant`
      # If Image contains a "/", it will replace the entire `image` in the pod.
      image: ztunnel
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

                writeVariant(it)
            }
        }
    
        private
        suspend fun WriteContext.writeVariant(variant: VariantResolveMetadata) {
            writeString(variant.name)
            write(variant.identifier)
            write(variant.attributes)
            writeCollection(variant.artifacts)
        }
    
        override fun read(decoder: Decoder): LocalComponentGraphResolveState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

            }
    
            return artifactsByNodeId.computeIfAbsent(toNode.getNodeId(), (LongFunction<ArtifactsForNode>) value -> {
                int id = nextId++;
                return new ArtifactsForNode(id, new VariantResolvingArtifactSet(variantResolver, component, variant, dependency, graphVariantSelector, consumerSchema));
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

          // Results in a bad mismatch of shapes.
          %updated_list = "tf.TensorListSetItem"(%list, %index, %element) : (tensor<!tf_type.variant<tensor<64x1xbf16>>>, tensor<i32>, tensor<64x1xbf16>) -> tensor<!tf_type.variant<tensor<64x1xbf16>>>
    
          return %updated_list : tensor<!tf_type.variant<tensor<64x1xbf16>>>
        }
      })";
    
      auto compilation_result = CompileMlirModule(
          kTensorListSetItemDimensionTooLarge,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        public NodeState(long nodeId, ComponentState component, ResolveState resolveState, VariantGraphResolveState variant, boolean selectedByVariantAwareResolution) {
            this.nodeId = nodeId;
            this.component = component;
            this.resolveState = resolveState;
            this.variantState = variant;
            this.metadata = variant.getMetadata();
            this.isTransitive = metadata.isTransitive() || metadata.isExternalVariant();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top