Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 856 for Initialize (0.32 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                  void setName(String string)
                }
    
                class Rules extends RuleSource {
                  @Model
                  void people(ModelSet<Person> people) {
                    println "initialize"
                  }
    
                  @Defaults void initialPeople(ModelSet<Person> people) {
                    println "apply defaults"
                  }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/reset.go

    	dryRun                bool
    	cleanupTmpDir         bool
    }
    
    // newResetOptions returns a struct ready for being used for creating cmd join flags.
    func newResetOptions() *resetOptions {
    	// initialize the public kubeadm config API by applying defaults
    	externalcfg := &v1beta4.ResetConfiguration{}
    	// Apply defaults
    	kubeadmscheme.Scheme.Default(externalcfg)
    	return &resetOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def 'can define and use source repositories with initscript resolution present'() {
            given:
            def commit = repo.commit('initial commit')
            temporaryFolder.file('initialize.gradle') << """
            initscript {
                dependencies {
                    classpath files('classpath.file')
                }
            }
            allprojects { p ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

                    switch (childLocalName) {
                        case "application-name":
    
                            applicationName = child.text();
    
                            break;
                        case "initialize-in-order":
    
                            initializeInOrder = Boolean.parseBoolean(child.text());
    
                            break;
                        case "description":
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SpnegoContext.java

        static {
            try {
                SPNEGO_MECH_OID = new ASN1ObjectIdentifier("1.3.6.1.5.5.2");
            }
            catch ( IllegalArgumentException e ) {
                log.error("Failed to initialize OID", e);
            }
        }
    
        private SSPContext mechContext;
    
        private boolean firstResponse = true;
        private boolean completed;
    
        private ASN1ObjectIdentifier[] mechs;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  6. src/runtime/os_netbsd.go

    	return int(n)
    }
    
    func goenvs() {
    	goenvs_unix()
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the parent thread (main thread in case of bootstrap), can allocate memory.
    func mpreinit(mp *m) {
    	mp.gsignal = malg(32 * 1024)
    	mp.gsignal.m = mp
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Cache.kt

       *
       * Note that if the application chooses to not call this method to initialize the cache. By
       * default, OkHttp will perform lazy initialization upon the first usage of the cache.
       */
      @Throws(IOException::class)
      fun initialize() {
        cache.initialize()
      }
    
      /**
       * Closes the cache and deletes all of its stored values. This will delete all files in the cache
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

                .build();
        }
    
        public static <C> ModelRegistration unmanaged(ModelRegistrations.Builder builder, Class<C> type, Factory<? extends C> initializer) {
            return unmanaged(builder, ModelType.of(type), initializer);
        }
    
        public static <C> ModelRegistration unmanaged(ModelRegistrations.Builder builder, Class<C> type, C c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/immediate_execution_context.h

      //===--------------------------------------------------------------------===//
      // Clear pending nodes in thread executors and kernel caches.
      virtual void ClearCachesAndThreadExecutors() = 0;
    
      // Initialize the step resource container for a training step. This is used
      // in current TF runtime. For tfrt, it is used by fallback op handler.
      virtual void StartStep() = 0;
      // Destroy the step resource container for a training step.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      weight_slice_size_recurrent_values_ = {n_cell_, n_output_};
    
      return success();
    }
    
    LogicalResult ConvertLayerNormalizedLSTMCellSimpleToFusedLSTM::Initialize() {
      if (failed(ConvertLSTMCellSimpleToFusedLSTM::Initialize())) {
        return fused_func_op_.emitError()
               << "Specified LayerNormalizedLSTMCellSimple was not of the expected "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
Back to top