Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 180 for valid (0.04 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    					}
    				case sym.STEXT:
    					targ := r.Sym()
    					if (ldr.AttrExternal(targ) && ldr.SymLocalentry(targ) != 1) || !ldr.AttrExternal(targ) {
    						// All local symbols share the same TOC pointer. This caller has a valid TOC
    						// pointer in R2. Calls into a Go symbol preserve R2. No call stub is needed.
    					} else {
    						// This caller has a TOC pointer. The callee might clobber it. R2 needs to be saved
    						// and restored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    			}
    		}
    		return ObjectInfo{}, toObjectErr(err, srcBucket, srcObject)
    	}
    
    	// List all online disks.
    	onlineDisks, modTime, etag := listOnlineDisks(storageDisks, metaArr, errs, readQuorum)
    
    	// Pick latest valid metadata.
    	fi, err := pickValidFileInfo(ctx, metaArr, modTime, etag, readQuorum)
    	if err != nil {
    		return oi, toObjectErr(err, srcBucket, srcObject)
    	}
    	if fi.Deleted {
    		if srcOpts.VersionID == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	if _DebugGC > 1 && frame.continpc != 0 {
    		print("scanframe ", funcname(frame.fn), "\n")
    	}
    
    	isAsyncPreempt := frame.fn.valid() && frame.fn.funcID == abi.FuncID_asyncPreempt
    	isDebugCall := frame.fn.valid() && frame.fn.funcID == abi.FuncID_debugCallV2
    	if state.conservative || isAsyncPreempt || isDebugCall {
    		if debugScanConservative {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    			return false
    		}
    	}
    
    	return true
    }
    
    // ignoreValidatingAdmissionPolicyMatchConditions returns true if there have been no updates that could invalidate previously-valid match conditions
    func ignoreValidatingAdmissionPolicyMatchConditions(new, old *admissionregistration.ValidatingAdmissionPolicy) bool {
    	if !reflect.DeepEqual(new.Spec.ParamKind, old.Spec.ParamKind) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/lifecycle_test.go

    func TestParseAndValidateLifecycleConfig(t *testing.T) {
    	testCases := []struct {
    		inputConfig           string
    		expectedParsingErr    error
    		expectedValidationErr error
    		lr                    lock.Retention
    	}{
    		{ // Valid lifecycle config
    			inputConfig: `<LifecycleConfiguration>
    								  <Rule>
    								  <ID>testRule1</ID>
    		                          <Filter>
    		                             <Prefix>prefix</Prefix>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top