Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for too (0.09 sec)

  1. tensorflow/c/c_api.cc

      // make sure there is no information loss.
      if (proto_len > std::numeric_limits<int>::max()) {
        status->status = InvalidArgument(
            "proto_len (", proto_len,
            " bytes) is too large to be parsed by the protocol buffer library");
        return;
      }
      TensorShapeProto shape;
      if (shape.ParseFromArray(proto, static_cast<int>(proto_len))) {
        desc->node_builder.Attr(attr_name, shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		maxstacksize = 1000000000
    	} else {
    		maxstacksize = 250000000
    	}
    
    	// An upper limit for max stack size. Used to avoid random crashes
    	// after calling SetMaxStack and trying to allocate a stack that is too big,
    	// since stackalloc works with 32-bit sizes.
    	maxstackceiling = 2 * maxstacksize
    
    	// Allow newproc to start new Ms.
    	mainStarted = true
    
    	if haveSysmon {
    		systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
     */
    @SuppressWarnings({
      "GoodTime", // lots of violations (nanosecond math)
      "nullness", // too much trouble for the payoff
    })
    @GwtCompatible(emulated = true)
    // TODO(cpovirk): Annotate for nullness.
    class LocalCache<K, V> extends AbstractMap<K, V> implements ConcurrentMap<K, V> {
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    			ClientConfig:    validClientConfig,
    			SideEffects:     &noSideEffect,
    			MatchConditions: get65MatchConditions(),
    		},
    		}, true),
    		expectedError: `webhooks[0].matchConditions: Too many: 65: must have at most 64 items`,
    	}}
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			errs := ValidateValidatingWebhookConfiguration(test.config)
    			err := errs.ToAggregate()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	return C_GOK
    }
    
    func (c *ctxtz) oplook(p *obj.Prog) *Optab {
    	// Return cached optab entry if available.
    	if p.Optab != 0 {
    		return &optab[p.Optab-1]
    	}
    	if len(p.RestArgs) > 3 {
    		c.ctxt.Diag("too many RestArgs: got %v, maximum is 3\n", len(p.RestArgs))
    		return nil
    	}
    
    	// Initialize classes for all arguments.
    	p.From.Class = int8(c.aclass(&p.From) + 1)
    	p.To.Class = int8(c.aclass(&p.To) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    			c.ctxt.Diag("misaligned label\n%v", p)
    		}
    		v >>= uint(shift)
    		t = int64(1) << uint(flen-1)
    		if v < -t || v >= t {
    			c.ctxt.Diag("branch too far %#x vs %#x [%p]\n%v\n%v", v, t, c.blitrl, p, q)
    			panic("branch too far")
    		}
    	}
    
    	return v & ((t << 1) - 1)
    }
    
    /*
     * pc-relative branches
     */
    func (c *ctxt7) opbra(p *obj.Prog, a obj.As) uint32 {
    	switch a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      } else if (result_ranked_type.hasStaticShape()) {
        // The operand is an unranked tensor, print a warning if the result
        // is static.
        // Note: We do not handle this situation as an error, this would be too
        // restrictive due to incompleteness of shape inference at this point.
        mlir::InFlightDiagnostic diag =
            mlir::emitWarning(op->getLoc(), "has static shape result");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	//    The constant must be less than podEvictionTimeout.
    	// 2. nodeStatusUpdateFrequency needs to be large enough for kubelet to generate node
    	//    status. Kubelet may fail to update node status reliably if the value is too small,
    	//    as it takes time to gather all necessary node information.
    	nodeStatusUpdateFrequency time.Duration
    
    	// nodeStatusReportFrequency is the frequency that kubelet posts node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    '\t'
    '\000'
    '\007'
    '\377'
    '\x07'
    '\xff'
    '\u12e4'
    '\U00101234'
    '\''         // rune literal containing single quote character
    'aa'         // illegal: too many characters
    '\xa'        // illegal: too few hexadecimal digits
    '\0'         // illegal: too few octal digits
    '\uDFFF'     // illegal: surrogate half
    '\U00110000' // illegal: invalid Unicode code point
    </pre>
    
    
    <h3 id="String_literals">String literals</h3>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    			secretKey:          credentials.SecretKey,
    			shouldPass:         false,
    			fault:              chunkDateMismatch,
    		},
    		// Test case - 11
    		// Set x-amz-decoded-content-length to a value too big to hold in int64.
    		{
    			bucketName:         bucketName,
    			objectName:         objectName,
    			data:               oneKData,
    			dataLen:            1024,
    			chunkSize:          1024,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top