Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for varints (0.19 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    type ValidatingAdmissionPolicyStatus struct {
    	// The generation observed by the controller.
    	// +optional
    	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`
    	// The results of type checking for each expression.
    	// Presence of this field indicates the completion of the type checking.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    //    In this case the assembler expands to multiple instructions and uses tmp
    //    register (R27).
    //  - All 32-bit Ops will zero the upper 32 bits of the destination register.
    
    // Suffixes encode the bit width of various instructions.
    // D (double word) = 64 bit
    // W (word)        = 32 bit
    // H (half word)   = 16 bit
    // HU              = 16 bit unsigned
    // B (byte)        = 8 bit
    // BU              = 8 bit unsigned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                        .getProject();
                            } catch (ProjectBuildingException e) {
                                // MNG-4488 where let invalid parents slide on by
                                if (logger.isDebugEnabled()) {
                                    // Message below is checked for in the MNG-2199 core IT.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                    PatternRewriter &rewriter) const override {
        auto addn_op = cast<AddNOp>(op);
    
        // TODO(hinsu): Support variant with TensorList type. tf.AddV2 doesn't
        // support variant type so variant types require special handling.
        if (mlir::isa<VariantType>(getElementTypeOrSelf(addn_op.getType())))
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    			t.Errorf("prec = %d: got %s; want %d", prec, &x, n)
    		}
    	}
    }
    
    // Selected precisions with which to run various tests.
    var precList = [...]uint{1, 2, 5, 8, 10, 16, 23, 24, 32, 50, 53, 64, 100, 128, 500, 511, 512, 513, 1000, 10000}
    
    // Selected bits with which to run various tests.
    // Each entry is a list of bits representing a floating-point number (see fromBits).
    var bitsList = [...]Bits{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.id())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.id());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	Scope int
    
    	// Addr is the type of address used to manipulate a socket. Addr must be
    	// one of:
    	//  - *TIPCSocketAddr: "id" variant in the C addr union
    	//  - *TIPCServiceRange: "nameseq" variant in the C addr union
    	//  - *TIPCServiceName: "name" variant in the C addr union
    	//
    	// If nil, EINVAL will be returned when the structure is used.
    	Addr TIPCAddr
    
    	raw RawSockaddrTIPC
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.getId())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.getId());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                std::vector<int>* output_permutation, NodeDef* node) {
            // Optimize the subgraph.
            // Do not constant fold nodes that output DT_VARIANT type tensors.
            // XLA does not support Const nodes of Variant type since it needs
            // to know the original ops to be able to compile them to the relevant
            // XLA form.
            // TODO(srbs): This filter is a little conservative. E.g. a subgraph of
            // the form:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history_test.go

    	tests := []testcase{
    		{
    			name:     "creates new",
    			parent:   &ss1.ObjectMeta,
    			revision: ss1Rev1,
    			existing: nil,
    
    			rename: false,
    		},
    		{
    			name:     "create doesn't conflict when parents differ",
    			parent:   &ss2.ObjectMeta,
    			revision: ss2Rev1,
    			existing: []struct {
    				parent   metav1.Object
    				revision *apps.ControllerRevision
    			}{
    				{
    					parent:   ss1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top