Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 596 for region (0.74 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            isVersionLockFile(testFileLock, false)
    
            where:
            mode << [Shared, Exclusive]
        }
    
        @Requires(UnitTestPreconditions.NoMandatoryFileLockOnOpen)
        def "writes lock file with info region while exclusive lock is open"() {
            expect:
            def lock = createLock(Exclusive)
            isVersionLockFileWithInfoRegion(testFileLock, true)
            lock.writeFile {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    	}
    	if err != nil {
    		apiErr.Description = fmt.Sprintf("%s (%s)", apiErr.Description, err)
    	}
    	if region := globalSite.Region(); region != "" {
    		if errCode == ErrAuthorizationHeaderMalformed {
    			apiErr.Description = fmt.Sprintf("The authorization header is malformed; the region is wrong; expecting '%s'.", region)
    			return apiErr
    		}
    	}
    	return apiErr
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // IfRegion condition should always be a scalar. Select the region to fold to.
      bool cond = cond_attr.getSplatValue<BoolAttr>().getValue();
      Region& region = cond ? op.getThenBranch() : op.getElseBranch();
    
      // If the IfRegion is stateless but the region being inlined itself is not
      // stateless, then inlining the region could cause a loss of information.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Sinks `tf.Const` operations in the ClusterOp region using them. This is
    // performed in order to limit the number of values implicitly captured in this
    // region before outlining.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateClusterConstantSinkingPass(
        llvm::function_ref<bool(tf_device::ClusterOp, ElementsAttr)> filter = {});
    
    // Creates a pass that outlines regions of tf_device.cluster operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. src/runtime/memmove_amd64.s

    	// There are two implementations of move algorithm.
    	// The first one for non-overlapped memory regions. It uses forward copying.
    	// The second one for overlapped regions. It uses backward copying
    	MOVQ	DI, CX
    	SUBQ	SI, CX
    	// Now CX contains distance between SRC and DEST
    	CMPQ	CX, BX
    	// If the distance lesser than region length it means that regions are overlapped
    	JC	copy_backward
    
    	// Non-temporal copy would be better for big sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/utils.h

    namespace mlir {
    namespace mhlo {
    
    // Builds body for reduce op by using the template binary op as the
    // reducer op.
    template <typename Op>
    void BuildReduceBody(Type element_type, Region* body, OpBuilder* builder) {
      OpBuilder::InsertionGuard guard(*builder);
      Block* block = builder->createBlock(body);
    
      // Block arguments are scalars of the given element type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/platform/azure.go

    		md[e.prefixName("vmId")] = aid
    	}
    	for k, v := range e.azureTags() {
    		md[k] = v
    	}
    	return md
    }
    
    // Locality returns the region and zone
    func (e *azureEnv) Locality() *core.Locality {
    	var l core.Locality
    	l.Region = e.azureLocation()
    	l.Zone = e.azureZone()
    	return &l
    }
    
    func (e *azureEnv) Labels() map[string]string {
    	return map[string]string{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/device_target.h

    class DeviceTarget {
     public:
      explicit DeviceTarget(MLIRContext* ctx);
    
      // Retrieves the kernel spec for the quant region op.
      std::optional<KernelSpec> GetKernelSpec(
          llvm::StringRef kernel, const KernelSpecs::Signature& signature) const;
    
      // Retrieves the scale decomposition function for the quant region op.
      ScaleDecomposeFn GetDecomposeFn(quantfork::QuantizeRegionOp op) const;
    
      // converts specification to signature:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/mem_aix.go

    	// AIX does not allow mapping a range that is already mapped.
    	// So, call mprotect to change permissions.
    	// Note that sysMap is always called with a non-nil pointer
    	// since it transitions a Reserved memory region to Prepared,
    	// so mprotect is always possible.
    	_, err := mprotect(v, n, _PROT_READ|_PROT_WRITE)
    	if err == _ENOMEM {
    		throw("runtime: out of memory")
    	}
    	if err != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

     * different types of failures.
     */
    class ResolutionFailureHandlerIntegrationTest extends AbstractIntegrationSpec {
        // region resolution failures
        // region Graph Variant failures
        def "demonstrate ambiguous graph variant selection failure with single disambiguating value for project"() {
            ambiguousGraphVariantForProjectWithSingleDisambiguatingAttribute.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top