Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 243 for cyclic (0.12 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     *
     * When caching a service inside another service, the property should also be [lazy] to avoid issues with cyclic service initialization and
     * excessive class loading on startup.
     *
     * The [KaCachedService] annotation itself is currently not enforced by any checkers or inspections, but it serves as an anchor for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/EclipseModelCompositeBuildIncludeCycleCrossVersionSpec.groovy

            """
            file('module-b/settings.gradle') << """
                includeBuild('../module-a')
            """
        }
    
        def "can find a build for of included build project despite cyclic include"() {
            when:
    
            List<String> result = withConnection { connection ->
                def builder = connection.action(new AccessIncludedBuildProjectBuildAction())
                collectOutputs(builder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/shape_inference.h

    // Infer shapes for all Tensors in a graph, and save them in a map.  The vector
    // for a Node contains the information about each of its outputs.
    // TODO(phawkins): this code does not infer accurate shapes for cyclic graphs.
    // `arg_shapes`: user given map from the `index` to shapes of this
    // node, where `index` is the `index` attribute of `_Arg` op or `_index`
    // attribute of `Placeholder` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. maven-slf4j-wrapper/pom.xml

        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-slf4j-wrapper</artifactId>
    
      <name>Maven SLF4J Wrapper</name>
      <description>This modules provides an ILoggerFactory interface which avoids a cyclic dependency between maven-embedder and maven-slf4j-provider.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/utils.h

      (void)matchPattern(permutation2, m_Constant(&perm2_const));
    
      return RemapPermutation(permutation1, perm2_const);
    }
    
    // Returns true if the transpose op is trivial. Trivial means that
    // the permutation is a cyclic permutation of the original shape with only the
    // identity dimensions permuted.
    inline bool IsTransposeTrivial(llvm::ArrayRef<int64_t> input_shape,
                                   Value perm) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/utils.td

    // Constraint that values in list attribute are all ones.
    def IsAllOnesConstant : Constraint<CPred<"TFL::IsAllOnesConstant($0)">>;
    
    // Constraint that checks if the transpose op is trivial. Trivial means that
    // the permutation is a cyclic permutation of the original shape with only the
    // identity dimensions permuted.
    def IsTransposeTrivial : Constraint<CPred<
      "TFL::IsTransposeTrivial($0.getType().cast<ShapedType>().getShape(), $1)">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/alias.go

    	for a := a0; a != nil; a, _ = t.(*Alias) {
    		t = a.fromRHS
    	}
    	if t == nil {
    		panic(fmt.Sprintf("non-terminated alias %s", a0.obj.name))
    	}
    
    	// Memoize the type only if valid.
    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/go/types/alias.go

    	for a := a0; a != nil; a, _ = t.(*Alias) {
    		t = a.fromRHS
    	}
    	if t == nil {
    		panic(fmt.Sprintf("non-terminated alias %s", a0.obj.name))
    	}
    
    	// Memoize the type only if valid.
    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/hash/crc64/crc64.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package crc64 implements the 64-bit cyclic redundancy check, or CRC-64,
    // checksum. See https://en.wikipedia.org/wiki/Cyclic_redundancy_check for
    // information.
    package crc64
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kubelet/runonce_test.go

    		fakeRuntime,
    		kb.mounter,
    		kb.hostutil,
    		kb.getPodsDir(),
    		kb.recorder,
    		volumetest.NewBlockVolumePathHandler())
    
    	// TODO: Factor out "stats.Provider" from Kubelet so we don't have a cyclic dependency
    	volumeStatsAggPeriod := time.Second * 10
    	kb.resourceAnalyzer = stats.NewResourceAnalyzer(kb, volumeStatsAggPeriod, kb.recorder)
    	nodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top