Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 121 for necessarily (0.27 sec)

  1. android/guava/src/com/google/common/base/Function.java

     * version of {@code com.google.common.base.Function} will be made to <i>extend</i> {@code
     * java.util.function.Function}, making conversion code necessary only in one direction. At that
     * time, this interface will be officially discouraged.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_windows.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package app does all of the work necessary to configure and run a
    // Kubernetes app process.
    package app
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"net"
    
    	// Enable pprof HTTP handlers.
    	_ "net/http/pprof"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         *
         * The function rethrows exceptions from the compiler, wrapped in [KaCodeCompilationException].
         * The implementation should wrap the `compile()` call into a `try`/`catch` block when necessary.
         */
        @Throws(KaCodeCompilationException::class)
        public fun compile(
            file: KtFile,
            configuration: CompilerConfiguration,
            target: KaCompilerTarget,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

     public:
      // Name of the post-training quantization post-calibration step. Used for
      // debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_calibration";
    
      // `CalibrationComponent` ctor with necessary information required to run
      // calibration on a `ModuleOp`. Meta information like `function_aliases`,
      // `tags`, `signature_def_map`, and `signature_keys` are required to properly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/strings/builder.go

    // bytes of capacity beyond len(b.buf).
    func (b *Builder) grow(n int) {
    	buf := bytealg.MakeNoZero(2*cap(b.buf) + n)[:len(b.buf)]
    	copy(buf, b.buf)
    	b.buf = buf
    }
    
    // Grow grows b's capacity, if necessary, to guarantee space for
    // another n bytes. After Grow(n), at least n bytes can be written to b
    // without another allocation. If n is negative, Grow panics.
    func (b *Builder) Grow(n int) {
    	b.copyCheck()
    	if n < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ConfigureUtil.java

            public Collection getMissingKeys() {
                return missingKeys;
            }
        }
    
        /**
         * <p>Configures {@code target} with {@code configureClosure}, via the {@link Configurable} interface if necessary.</p>
         *
         * <p>If {@code target} does not implement {@link Configurable} interface, it is set as the delegate of a clone of
         * {@code configureClosure} with a resolve strategy of {@code DELEGATE_FIRST}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcPlugin.java

            configureReportsConventionMapping(task, baseName);
            configureToolchains(task);
        }
    
        @Override
        protected void beforeApply() {
            // Necessary to disambiguate the published variants of newer codenarc versions (including the default version)
            project.getPluginManager().apply(JvmEcosystemPlugin.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:49:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

          /*legacy_graph_export=*/false));
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateLaunchToDeviceAttributePass(
          /*legacy_graph_export=*/false));
    
      // Do a single pass to encode necessary control deps in the IR according to
      // the results of side effect analysis.
      pm.addPass(
          mlir::tf_executor::CreateTFExecutorUpdateControlDependenciesPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. doc/next/3-tools.md

    that would be obtained in an empty environment with no prior uses of the `-w` flag.
    
    <!-- go.dev/issue/27005, CL 585401 -->
    The new `go` `mod` `tidy` `-diff` flag causes the command not to modify
    the files but instead print the necessary changes as a unified diff.
    It exits with a non-zero code if updates are needed.
    
    <!-- go.dev/issue/52792, CL 562775 -->
    <!-- TODO: Improve this if needed. -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

         * ensuring maximum concurrency. This comes at the cost of allocating locks for each key, leading to
         * relatively high memory pressure. If the above guarantee is not necessary, consider using a {@link #striped()}
         * guard instead.
         */
        public static <T> ProducerGuard<T> adaptive() {
            return new AdaptiveProducerGuard<T>();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top