Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 207 for INITIALIZING (0.24 sec)

  1. pilot/pkg/bootstrap/sidecarinjector.go

    		}
    		watcher = inject.NewConfigMapWatcher(s.kubeClient, args.Namespace, configMapName, "config", "values")
    	} else {
    		log.Infof("Skipping sidecar injector, template not found")
    		return nil, nil
    	}
    
    	log.Info("initializing sidecar injector")
    
    	parameters := inject.WebhookParameters{
    		Watcher:      watcher,
    		Env:          s.environment,
    		Mux:          s.httpsMux,
    		Revision:     args.Revision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

     * <p>
     * ProjectBuilder internally uses native services.
     * <p>
     * The project isn't available until the subclass's {@code setup()} method because initializing it before then, would mean that we
     * would create a temporary project directory which didn't know about the class and method for which it was being created.
     */
    @CleanupTestDirectory
    @UsesNativeServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. pkg/volume/util/hostutil/fake_hostutil.go

    	MountPoints []mount.MountPoint
    	Filesystem  map[string]FileType
    
    	mutex sync.Mutex
    }
    
    // NewFakeHostUtil returns a struct that implements the HostUtils interface
    // for testing
    // TODO: no callers were initializing the struct with any MountPoints. Check
    // if those are still being used by any callers and if MountPoints still need
    // to be a part of the struct.
    func NewFakeHostUtil(fs map[string]FileType) *FakeHostUtil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/fix/cftype.go

    	disabled: false,
    }
    
    // Old state:
    //
    //	type CFTypeRef unsafe.Pointer
    //
    // New state:
    //
    //	type CFTypeRef uintptr
    //
    // and similar for other *Ref types.
    // This fix finds nils initializing these types and replaces the nils with 0s.
    func cftypefix(f *ast.File) bool {
    	return typefix(f, func(s string) bool {
    		return strings.HasPrefix(s, "C.") && strings.HasSuffix(s, "Ref") && s != "C.CFAllocatorRef"
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_var_init_by_const.cc

    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // A pass that removes `tf.AssignVariableOp(tf.VarHandleOp, tf.Const)` patterns
    // from the initializer function (type = "restore_op").
    //
    // Note: initializing values (`tf.Const`s) will be removed and this may result
    // in an information loss and uninitialized variable errors. Make sure that this
    // effect is desired (e.g. there is a `tf.RestoreV2Op` restoring the variables
    // instead).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:04:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. buildscripts/verify-healing-empty-erasure-set.sh

    }
    
    function check_online() {
    	if ! grep -q 'Status:' ${WORK_DIR}/dist-minio-*.log; then
    		echo "1"
    	fi
    }
    
    function purge() {
    	echo rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. buildscripts/verify-healing.sh

    		test $foundFiles1 -eq $foundFiles2
    		v2=$?
    		[ $v1 == 0 -a $v2 == 0 ] && return 0
    		sleep 10
    	done
    	return 1
    }
    
    function purge() {
    	rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    // 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.
    
    [[partr1_gradle_init]]
    = Part 1: Initializing the Project
    
    Learn the basics of authoring Gradle by first creating a Java app using Gradle init.
    
    ****
    **In this section, you will:**
    
    - Initialize a Java project
    - Review the directory layout
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "SafeAtomicHelper");
        checkHelperVersion(NO_ATOMIC_FIELD_UPDATER, "SynchronizedAtomicHelper");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    		log.Infof("Initializing Kubernetes service registry %q", options.ClusterID)
    		options.ConfigCluster = configCluster
    		kubeRegistry := NewController(client, options)
    		kubeController := &kubeController{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top