Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 728 for namely (0.11 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/package-info.java

     *     <li>{@link org.gradle.api.internal.provider.AbstractCollectionProperty} - implements the API for
     *     collection properties (specified via {@link org.gradle.api.provider.HasMultipleValues HasMultipleValues}) namely {@link org.gradle.api.provider.ListProperty list} and {@link org.gradle.api.provider.SetProperty set} properties).</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

     public:
      explicit ResourceAnalyzer(ModuleOp module, bool skip_session_init = false);
    
      bool IsPotentiallyWritten(Value resource) const;
    
     private:
      // Analyze the specified region for resource mutating operations, namely
      // TF::AssignVariableOp, if so, set the resource associated as "potentially
      // written".
      LogicalResult AnalyzeRegion(Region& region);
    
      // If an op is not one of the handled ones, we assume all resource usages
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

    @OptIn(KaAnalysisNonPublicApi::class)
    fun MutableSet<KtFile>.collectReachableInlineDelegatedPropertyAccessors() {
        if (isEmpty()) return
    
        // One of the compiler lowerings, namely `PropertyReferenceLowering`,
        // optimizes usages of property references in some cases,
        // and if a containing delegated property accessor is inline,
        // it might need this accessor's bytecode.
        //
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/log/logr.go

    // limitations under the License.
    
    package log
    
    import (
    	"fmt"
    
    	"github.com/go-logr/logr"
    )
    
    // zapLogger is a logr.Logger that uses Zap to log. This is needed to get
    // libraries, namely Kubernetes/klog, that use logr, to use our standard logging.
    // This enables standard formatting, scope filtering, and options. The logr
    // interface does not have a concept of Debug/Info/Warn/Error as we do. Instead,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/internal/pkgpattern/pkgpattern.go

    // TreeCanMatchPattern(pattern)(name) reports whether
    // name or children of name can possibly match pattern.
    // Pattern is the same limited glob accepted by MatchPattern.
    func TreeCanMatchPattern(pattern string) func(name string) bool {
    	wildCard := false
    	if i := strings.Index(pattern, "..."); i >= 0 {
    		wildCard = true
    		pattern = pattern[:i]
    	}
    	return func(name string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    // SurroundingObjectFunc is a surrounding object builder with a given x at a leaf.
    // Which leave is determined by the series of Index() and Child(k) calls.
    // It also returns the inverse of the builder, namely the accessor that extracts x
    // from the test object.
    //
    // With obj, acc, _ := someSurroundingObjectFunc(x) we get:
    //
    //	acc(obj) == x
    //	reflect.DeepEqual(acc(DeepCopy(obj), x) == x
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

      if (it == resource_infos_.end()) {
        return false;
      }
      return it->second.potentially_written;
    }
    
    // Analyze the specified region for resource mutating operations, namely
    // TF::AssignVariableOp, if so, set the resource associated as "potentially
    // written". Do this recursively across the chain of regions via call or
    // control flow ops.
    // TODO(ashwinm): Move to iterative traversal.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A helper which does some thread-safe operations for aggregate futures, which must be implemented
     * differently in GWT. Namely:
     *
     * <ul>
     *   <li>Lazily initializes a set of seen exceptions
     *   <li>Decrements a counter atomically
     * </ul>
     */
    @GwtCompatible(emulated = true)
    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    * a single "main" publication, named `pluginMaven`, based on the <<java_plugin.adoc#sec:java_plugin_publishing,main Java component>>
    * multiple <<plugins.adoc#sec:plugin_markers,"marker" publications>> (one for each plugin defined in the `gradlePlugin {}` block), named `<pluginName>PluginMarkerMaven` (for example in the above example it would be `simplePluginPluginMarkerMaven`)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A helper which does some thread-safe operations for aggregate futures, which must be implemented
     * differently in GWT. Namely:
     *
     * <ul>
     *   <li>Lazily initializes a set of seen exceptions
     *   <li>Decrements a counter atomically
     * </ul>
     */
    @GwtCompatible(emulated = true)
    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top