Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for reusify (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            when:
            configurationCacheRun(task, *options)
            def secondRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Reusing configuration cache.\n/, '')
                .replaceAll(/Configuration cache entry reused.\n/, '')
    
            then:
            firstRunOutput == secondRunOutput
    
            where:
            task           | options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

            cst.erase();
          }
    
          if (result.needs_densify) {
            auto value = op->getOperand(operand);
            auto densify =
                builder.create<DensifyOp>(op->getLoc(), value.getType(), value);
            value.replaceAllUsesWith(densify);
            densify.setOperand(value);
          }
        }
      });
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                assertSingleFileReport(ReportSeverity.FATAL, EditorMessages.failure)
            }
        }
    
        @Test
        fun `report file error on TAPI failure when reusing previous dependencies`() {
    
            val editedScript = withBuildScript("")
    
            val previous = resolvedScriptDependencies(editedScript).apply {
                assertContainsBasicDependencies()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                    logger.debug(
                            "Reusing cached resolved plugin version for {}:{} to {} from POM {}",
                            request.getGroupId(),
                            request.getArtifactId(),
                            result.getVersion(),
                            request.getPom());
                }
            } else {
                logger.debug(
                        "Reusing cached resolved plugin version for {}:{} to {} from POM {}",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/main_test.go

    			Annotations: map[string]string{
    				annotation.SidecarUserVolume.Name:      clientSidecarVolumes,
    				annotation.SidecarUserVolumeMount.Name: sidecarVolumeMounts,
    				// the default bootstrap template does not support reusing values from the `ISTIO_META_TLS_CLIENT_*` environment variables
    				// see security/pkg/nodeagent/cache/secretcache.go:generateFileSecret() for details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    	// evaluated during compile time. Moreover, some operations can be evaluated
    	// only if its arguments satisfy additional conditions(e.g. divide by zero).
    	// It's fragile and error-prone. We did a trick by reusing the existing rules
    	// in generic rules for compile-time evaluation. But generic rules rewrite
    	// original value, this behavior is undesired, because the lattice of values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graphs.java

        }
        return hasCycle(network.asGraph());
      }
    
      /**
       * Performs a traversal of the nodes reachable from {@code node}. If we ever reach a node we've
       * already visited (following only outgoing edges and without reusing edges), we know there's a
       * cycle in the graph.
       */
      private static <N> boolean subgraphHasCycle(
          Graph<N> graph,
          Map<Object, NodeVisitState> visitedNodes,
          N node,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. src/runtime/pinner.go

    			// We set this finalizer once and never clear it. Thus, if the
    			// pinner gets cached, we'll reuse it, along with its finalizer.
    			// This lets us avoid the relatively expensive SetFinalizer call
    			// when reusing from the cache. The finalizer however has to be
    			// resilient to an empty pinner being finalized, which is done
    			// by checking p.refs' length.
    			SetFinalizer(p.pinner, func(i *pinner) {
    				if len(i.refs) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Graphs.java

        }
        return hasCycle(network.asGraph());
      }
    
      /**
       * Performs a traversal of the nodes reachable from {@code node}. If we ever reach a node we've
       * already visited (following only outgoing edges and without reusing edges), we know there's a
       * cycle in the graph.
       */
      private static <N> boolean subgraphHasCycle(
          Graph<N> graph,
          Map<Object, NodeVisitState> visitedNodes,
          N node,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                }
    
                else -> validationFailures.accept(failure)
            }
        }
    
        private
        fun ConfigurationCacheAction.summaryText() =
            when (this) {
                LOAD -> "reusing"
                STORE -> "storing"
                UPDATE -> "updating"
            }
    
        private
        fun ConfigurationCacheStartParameter.requestedTasksOrDefault() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top