Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 760 for Initialize (0.15 sec)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

           * currentEntry above. After that, we never clear it.
           */
          return requireNonNull(currentEntry).getKey();
        }
    
        @Override
        public void remove() {
          checkRemove(canRemove);
          /*
           * requireNonNull is safe because canRemove is set to true only after we initialize
           * currentEntry (which we never subsequently clear).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. finisher_api.go

    			if where, ok := c.Expression.(clause.Where); ok {
    				tx.assignInterfacesToValue(where.Exprs)
    			}
    		}
    
    		// initialize with attrs, conds
    		if len(tx.Statement.attrs) > 0 {
    			tx.assignInterfacesToValue(tx.Statement.attrs...)
    		}
    	}
    
    	// initialize with attrs, conds
    	if len(tx.Statement.assigns) > 0 {
    		tx.assignInterfacesToValue(tx.Statement.assigns...)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    type Multicluster struct {
    	// serverID of this pilot instance used for leader election
    	serverID string
    
    	// options to use when creating kube controllers
    	opts Options
    
    	// client for reading remote-secrets to initialize multicluster registries
    	client kubernetes.Interface
    	s      server.Instance
    
    	serviceEntryController *serviceentry.Controller
    	configController       model.ConfigStoreController
    	XDSUpdater             model.XDSUpdater
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    			logger.Fatal(config.ErrUnableToWriteInBackend(err).Hint(hint), "Unable to initialize backend")
    		}
    	case errors.Is(err, errFaultyDisk):
    		if !exit {
    			storageLogOnceIf(GlobalContext, fmt.Errorf("Drive is faulty at %s, please replace the drive - drive will be offline", endpoint), "log-fatal-errs")
    		} else {
    			logger.Fatal(err, "Unable to initialize backend")
    		}
    	case errors.Is(err, errDiskFull):
    		if !exit {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init_test.go

    				options.IgnorePreflightErrors: "a,b",
    			},
    			validate: expectedInitIgnorePreflightErrors("a", "b", "c", "d"),
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			// initialize an external init option and inject it to the init cmd
    			initOptions := newInitOptions()
    			initOptions.skipCRIDetect = true // avoid CRI detection in unit tests
    			cmd := newCmdInit(nil, initOptions)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/fake.go

    	if !opts.SkipRun {
    		fake.Run()
    		if err := env.InitNetworksManager(xdsUpdater); err != nil {
    			t.Fatal(err)
    		}
    		if err := env.PushContext().InitContext(env, nil, nil); err != nil {
    			t.Fatalf("Failed to initialize push context: %v", err)
    		}
    	}
    	return fake
    }
    
    func (f *ConfigGenTest) Run() {
    	go f.Registry.Run(f.stop)
    	go f.store.Run(f.stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/log/Logger.java

            }
        }
    
        /**
         * {@link Logger}を初期化します。
         */
        protected static synchronized void initialize() {
            DisposableUtil.addFirst(() -> {
                initialized = false;
                loggers.clear();
                factory.releaseAll();
            });
            initialized = true;
        }
    
        /**
         * ログアダプタのファクトリを返します。
         * <p>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top