Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 856 for Initialize (0.49 sec)

  1. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    					return false, nil
    				}
    				return true, nil
    			})
    		if err != nil {
    			return fmt.Errorf("unable to initialize APF bootstrap configuration: %w", err)
    		}
    		return nil
    	}()
    	if err != nil {
    		return err
    	}
    
    	// we have successfully initialized the bootstrap configuration, now we
    	// spin up a goroutine which reconciles the bootstrap configuration periodically.
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    * A local Gradle installation, to initialize a new Gradle project
    * A GitHub account
    
    == Setup a Gradle project on GitHub
    
    If you have an existing Gradle project hosted on GitHub, then you can skip this step and move directly to <<#sec:configure_github_actions,Configure GitHub Actions>>.
    
    If not, follow these step to initialize a new Gradle project on GitHub.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            return adaptee;
        }
    
        @Override
        public void setAdaptee(MetaClass metaClass) {
            adaptee = metaClass;
        }
    
        @Override
        public synchronized void initialize() {
            this.adaptee.initialize();
        }
    
        @Override
        public Object invokeMissingMethod(Object instance, String methodName, Object[] arguments) {
            return adaptee.invokeMissingMethod(instance, methodName, arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top