Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,898 for Initialize (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    _Training level_: **Beginner** +
    _Reading time_: **25 minutes** +
    <<gradle_basics.adoc#gradle,-> Read Core Concepts >>
    
    === 2. Hands-on Tutorial
    
    [sidebar]
    _Description_: *Initialize a Gradle build for a basic Java App.* +
    _Training level_: **Beginner** +
    _Training time_: **45 minutes** +
    <<part1_gradle_init#part1_begin,-> Start the Tutorial >>
    
    == For Build Engineers and Plugin Developers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // This pass creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    // function and replaces tf.Consts with the results of RestoreV2.
    class InsertRestoreOpPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/message/MessageFormatter.java

        }
    
        /**
         * 初期化します。
         */
        protected static synchronized void initialize() {
            if (!initialized) {
                DisposableUtil.add(() -> {
                    ResourceBundle.clearCache();
                    initialized = false;
                });
                initialized = true;
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. test/fixedbugs/bug289.go

    // license that can be found in the LICENSE file.
    
    // https://code.google.com/p/gofrontend/issues/detail?id=1
    
    package main
    
    func f1() {
    	a, b := f() // ERROR "assignment mismatch|does not match|cannot initialize"
    	_, _ = a, b
    }
    
    func f2() {
    	var a, b int
    	a, b = f() // ERROR "assignment mismatch|does not match|cannot assign"
    	_, _ = a, b
    }
    
    func f() int {
    	return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 495 bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet.go

    	certificateStore, err := certificate.NewFileStore(
    		"kubelet-server",
    		certDirectory,
    		certDirectory,
    		kubeCfg.TLSCertFile,
    		kubeCfg.TLSPrivateKeyFile)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize server certificate store: %v", err)
    	}
    	var certificateRenewFailure = compbasemetrics.NewCounter(
    		&compbasemetrics.CounterOpts{
    			Subsystem:      metrics.KubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. pkg/proxy/node.go

    // OnNodeAdd is a handler for Node creates.
    func (n *NodePodCIDRHandler) OnNodeAdd(node *v1.Node) {
    	n.mu.Lock()
    	defer n.mu.Unlock()
    
    	podCIDRs := node.Spec.PodCIDRs
    	// initialize podCIDRs
    	if len(n.podCIDRs) == 0 && len(podCIDRs) > 0 {
    		n.logger.Info("Setting current PodCIDRs", "podCIDRs", podCIDRs)
    		n.podCIDRs = podCIDRs
    		return
    	}
    	if !reflect.DeepEqual(n.podCIDRs, podCIDRs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_initialize_variables_in_session_init_fail.mlir

    // RUN: tf-opt -tf-saved-model-initialize-variables-in-session-init -verify-diagnostics -fail-to-fetch-local-device-manager %s
    
    // expected-error@below{{No Local Device Manager}}
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
      func.func @serving_default(%arg0: tensor<!tf_type.resource<tensor<100x50xf32>>> {tf.resource_name = "dense/kernel"}) -> (tensor<100x50xf32> {tf_saved_model.index_path = ["dense_2"]})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 994 bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/init.go

    package modcmd
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/modload"
    	"context"
    )
    
    var cmdInit = &base.Command{
    	UsageLine: "go mod init [module-path]",
    	Short:     "initialize new module in current directory",
    	Long: `
    Init initializes and writes a new go.mod file in the current directory, in
    effect creating a new module rooted at the current directory. The go.mod file
    must not already exist.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/cgo/libcgo_unix.h

    // Copyright 2016 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.
    
    /*
     * Initialize g->stacklo.
     */
    extern void _cgo_set_stacklo(G *, uintptr *);
    
    /*
     * Call pthread_create, retrying on EAGAIN.
     */
    extern int _cgo_try_pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*);
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 684 bytes
    - Viewed (0)
  10. src/runtime/vdso_linux_ppc64x.go

    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.15", 0x75fcba5}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__kernel_clock_gettime", 0xb0cd725, 0xdfa941fd, &vdsoClockgettimeSym},
    }
    
    // initialize with vsyscall fallbacks
    var (
    	vdsoClockgettimeSym uintptr = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 672 bytes
    - Viewed (0)
Back to top