Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 189 for valid (0.16 sec)

  1. src/cmd/compile/internal/types/type.go

    	intRegs, floatRegs uint8 // registers needed for ABIInternal
    
    	flags bitset8
    	alg   AlgKind // valid if Align > 0
    
    	// size of prefix of object that contains all pointers. valid if Align > 0.
    	// Note that for pointers, this is always PtrSize even if the element type
    	// is NotInHeap. See size.go:PtrDataSize for details.
    	ptrBytes int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            and:
            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:reserved-alias-name'
                contextualLabel == "Problem: In version catalog libs, alias '$reserved' is not a valid alias."
                details == "Alias '$reserved' is a reserved name in Gradle which prevents generation of accessors."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

        %0 = "tf.Conv2D"(%arg0, %arg1) {attr_map = "0:strides,1:use_cudnn_on_gpu,2:padding,3:explicit_paddings,4:dilations", data_format = "NHWC", device = "", dilations = [1, 1, 1, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true} : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        %1 = "tf.BiasAdd"(%0, %arg2) {data_format = "NHWC", device = ""} : (tensor<*xf32>, tensor<2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // The ControlNodeOp depends on all control tokens emitted by the nodes at the
      // other end of the incoming edges. Since we're proceding in a valid
      // topological order, all lookups of these tokens in
      // (*control_nodes)[incoming] should be valid. However, we might (in theory)
      // have pruned an operator above, so we only emit values that have been
      // populated.
      llvm::SmallVector<Value, 2> control_tokens;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    		tp.mask &^= ((1 << (bits)) - 1) << (ptrBits - bits)
    	}
    	return tp
    }
    
    // objBase returns the base pointer for the object containing addr in span.
    //
    // Assumes that addr points into a valid part of span (span.base() <= addr < span.limit).
    //
    //go:nosplit
    func (span *mspan) objBase(addr uintptr) uintptr {
    	return span.base() + span.objIndex(addr)*span.elemsize
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	// fine as all that work is idempotent within a GC cycle, and
    	// we're still holding worldsema so a new cycle can't start.
    	sl := sweep.active.begin()
    	if !stwSwept && !sl.valid {
    		throw("failed to set sweep barrier")
    	} else if stwSwept && sl.valid {
    		throw("non-concurrent sweep failed to drain all sweep queues")
    	}
    
    	systemstack(func() {
    		// The memstats updated above must be updated with the world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    				if msg[1] == '/' {
    					// line comment (newline is part of the comment)
    					pos = MakePos(p.file, line+1, colbase)
    				} else {
    					// regular comment
    					// (if the comment spans multiple lines it's not
    					// a valid line directive and will be discarded
    					// by updateBase)
    					pos = MakePos(p.file, line, col+uint(len(msg)))
    				}
    				p.updateBase(pos, line, col+2+5, text[5:]) // +2 to skip over // or /*
    				return
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	parentRef parentReference,
    	hostnames []k8s.Hostname,
    	namespace string,
    ) *ParentError {
    	if parentRef.Kind == gvk.Service || parentRef.Kind == gvk.ServiceEntry {
    		// TODO: check if the service reference is valid
    		if false {
    			return &ParentError{
    				Reason:  ParentErrorParentRefConflict,
    				Message: fmt.Sprintf("parent service: %q is invalid", parentRef.Name),
    			}
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    		// so it's important that addresses be distinguishable
    		// from other data.
    		//
    		// Starting at 0x00c0 means that the valid memory addresses
    		// will begin 0x00c0, 0x00c1, ...
    		// In little-endian, that's c0 00, c1 00, ... None of those are valid
    		// UTF-8 sequences, and they are otherwise as far away from
    		// ff (likely a common byte) as possible. If that fails, we try other 0xXXc0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// newest ReplicaSet.
    	// +optional
    	CollisionCount *int32 `json:"collisionCount,omitempty" protobuf:"varint,8,opt,name=collisionCount"`
    }
    
    type DeploymentConditionType string
    
    // These are valid conditions of a deployment.
    const (
    	// Available means the deployment is available, ie. at least the minimum available
    	// replicas required are up and running for at least minReadySeconds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top