Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 751 for Initialize (0.61 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminRole_AdminRoleEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        // -----------------------------------------------------
        //                                               Details
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/kubelet/config/config_test.go

    		kubetypes.SET,
    	} {
    		var podWithStatusChange *v1.Pod
    		pods, _ := newTestPods(false, false)
    		channel, ch, _ := createPodConfigTester(tCtx, PodConfigNotificationIncremental)
    
    		// Use SET to initialize the config, especially initialize the source set
    		channel <- CreatePodUpdate(kubetypes.SET, TestSource, pods...)
    		expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, pods...))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    		Codec:          codecs.LegacyCodec(examplev1.SchemeGroupVersion),
    		Clock:          setupOpts.clock,
    	}
    	cacher, err := NewCacherFromConfig(config)
    	if err != nil {
    		t.Fatalf("Failed to initialize cacher: %v", err)
    	}
    	ctx := context.Background()
    	terminate := func() {
    		cacher.Stop()
    		server.Terminate(t)
    	}
    
    	// Since some tests depend on the fact that GetList shouldn't fail,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

            // It's often the case that all the candidate values are the same. In this case, we avoid
            // the creation of a set, and just iterate until we find a different value. Then, only in
            // this case, we lazily initialize a set and collect all the candidate values.
            Set<Object> candidateValues = null;
            Object compatibleValue = null;
            boolean first = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. src/runtime/arena_test.go

    	GC()
    	GC()
    }
    
    func TestUserArenaCloneString(t *testing.T) {
    	a := NewUserArena()
    
    	// A static string (not on heap or arena)
    	var s = "abcdefghij"
    
    	// Create a byte slice in the arena, initialize it with s
    	var b []byte
    	a.Slice(&b, len(s))
    	copy(b, s)
    
    	// Create a string as using the same memory as the byte slice, hence in
    	// the arena. This could be an arena API, but hasn't really been needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. internal/logger/target/http/http.go

    // AssignMigrateTarget assigns a target
    // which will eventually replace the current target.
    func (h *Target) AssignMigrateTarget(migrateTgt *Target) {
    	h.migrateTarget = migrateTgt
    }
    
    // Init validate and initialize the http target
    func (h *Target) Init(ctx context.Context) (err error) {
    	if h.config.QueueDir != "" {
    		return h.initQueueOnce.DoWithContext(ctx, h.initDiskStore)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. cmd/erasure-healing.go

    	if globalTrace.NumSubscribers(madmin.TraceHealing) > 0 {
    		startTime := time.Now()
    		defer func() {
    			healTrace(healingMetricObject, startTime, bucket, object, &opts, err, &result)
    		}()
    	}
    
    	// Initialize heal result object
    	result = madmin.HealResultItem{
    		Type:      madmin.HealItemObject,
    		Bucket:    bucket,
    		Object:    object,
    		VersionID: versionID,
    		DiskCount: len(storageDisks),
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    may also happen in unusual cases when using cgo or SWIG; in that case,
    the discussion here applies).  For -buildmode=c-archive the Go runtime
    will initialize signals at global constructor time.  For
    -buildmode=c-shared the Go runtime will initialize signals when the
    shared library is loaded.
    
    If the Go runtime sees an existing signal handler for the SIGCANCEL or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/controller/volume/expand/expand_controller.go

    	// therefore the PVC objects in its store should be treated as immutable.
    	pvcLister  corelisters.PersistentVolumeClaimLister
    	pvcsSynced cache.InformerSynced
    
    	// volumePluginMgr used to initialize and fetch volume plugins
    	volumePluginMgr volume.VolumePluginMgr
    
    	// recorder is used to record events in the API server
    	recorder record.EventRecorder
    
    	operationGenerator operationexecutor.OperationGenerator
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. src/runtime/os3_solaris.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
    }
    
    func miniterrno()
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top