Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for convenient (0.14 sec)

  1. pkg/kube/krt/core.go

    	augment(any) any
    }
    
    // Singleton is a special Collection that only ever has a single object. They can be converted to the Collection where convenient,
    // but when using directly offer a more ergonomic API
    type Singleton[T any] interface {
    	// Get returns the object, or nil if there is none.
    	Get() *T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. testing/performance/docs/performance-bisect.md

    or by having a new failing test, given the current slow feedback cycle, it can
    be difficult to track the exact commit that triggered the regression.
    
    The most convenient way to find the commit is to use `git bisect`. Before doing so
    you need to
     1. identify the test that exposes the regression
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The link:{javadocPath}/org/gradle/api/Project.html#configure-java.lang.Object-groovy.lang.Closure-[`configure`] function is used to configure an extension object.
    It provides a convenient way to set properties or apply configurations to these objects.
    The type used in the build script's `configure` function (`GreetingPluginExtension`) must match the extension type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      // CHLO first.
      stablehlo::StablehloToHloTypeConverter hlo_converter;
      if (legalize_chlo) {
        chlo::populateChloToHloPatterns(context, &hlo_converter, &patterns);
      }
      // ConstantLike op is convenient to create splat constants, but is
      // canonicalized to plain HLO constant if statically shaped. Add the
      // canonicalization pattern to pattern list to enable multi-hop lowering.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

            custom_legalization_passes = {});
    
    static inline Status CompileToHloGraphAnalysisFailedError() {
      return errors::Internal("disabled after graph analysis");
    }
    
    // Register a convenient pipeline for invoking TF/XLA lowering from the command
    // line.
    void RegisterConvertMlirToXlaHloPipelineWithDefaults();
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.h

      /// and the control dependencies of the current scope.
      Scope WithControlDependencies(absl::Span<const Operation> control_deps) const;
      /// Same as above, but convenient to add control dependency on the operation
      /// producing the control_dep output.
      Scope WithControlDependencies(const Output& control_dep) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

                        files.add(content);
                    }
                }
    
                private void addTreeContents(FileTreeInternal fileTree) {
                    // TODO - add some convenient way to visit the files of the tree without collecting them into a set
                    files.addAll(fileTree.getFiles());
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    You can write tests for your build code, ensuring that it behaves as expected.
    
    5. *Gradle Plugin Development*:
    +
    If you are developing custom Gradle plugins for your project, `buildSrc` is a convenient place to house the plugin code.
    This makes the plugins easily accessible within your project.
    
    The `buildSrc` directory is treated as an <<composite_builds.adoc#composite_build_intro,included build>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         *
         * <p>
         * While very similar in functionality to the regular {@link #map(Transformer) map} operation, this method
         * offers a convenient way of connecting together task inputs and outputs. (For a deeper understanding of
         * the topic see the <a href="https://docs.gradle.org/current/userguide/lazy_configuration.html">Lazy Configuration</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        fail("Should throw " + exceptionName);
      }
    
      /** The number of elements to place in collections, arrays, etc. */
      public static final int SIZE = 20;
    
      // Some convenient Integer constants
    
      public static final Integer zero = 0;
      public static final Integer one = 1;
      public static final Integer two = 2;
      public static final Integer three = 3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top