Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 856 for Initialize (0.26 sec)

  1. src/compress/flate/inflate.go

    	links    [][]uint32               // overflow links
    	linkMask uint32                   // mask the width of the link table
    }
    
    // Initialize Huffman decoding tables from array of code lengths.
    // Following this function, h is guaranteed to be initialized into a complete
    // tree (i.e., neither over-subscribed nor under-subscribed). The exception is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. cmd/common-main.go

    	var err error
    	globalConfigDir, err = newConfigDir(configDir, configSet, defaultConfigDir.Get)
    	logger.FatalIf(err, "Unable to initialize the (deprecated) config directory")
    	globalCertsDir, err = newConfigDir(certsDir, certsSet, defaultCertsDir.Get)
    	logger.FatalIf(err, "Unable to initialize the certs directory")
    
    	// Remove this code when we deprecate and remove config-dir.
    	// This code is to make sure we inherit from the config-dir
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/math/rand/rand.go

    // to generate other random values.
    func New(src Source) *Rand {
    	s64, _ := src.(Source64)
    	return &Rand{src: src, s64: s64}
    }
    
    // Seed uses the provided seed value to initialize the generator to a deterministic state.
    // Seed should not be called concurrently with any other [Rand] method.
    func (r *Rand) Seed(seed int64) {
    	if lk, ok := r.src.(*lockedSource); ok {
    		lk.seedPos(seed, &r.readPos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            resource.create_resource = &objects->concrete_functions[child_node_id];
          } else if (child.local_name() == "_initialize" &&
                     obj_graph.nodes(child.node_id()).kind_case() ==
                         SavedObject::kFunction) {
            resource.initialize = &objects->concrete_functions[child_node_id];
          } else if (child.local_name() == "_destroy_resource" &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_ppc64x.s

    	// In parent, return.
    	CMP	R3, $0
    	BEQ	3(PC)
    	MOVW	R3, ret+40(FP)
    	RET
    
    	// In child, on new stack.
    	// initialize essential registers
    	BL	runtime·reginit(SB)
    	MOVD	-32(R1), R7
    	CMP	R7, $1234
    	BEQ	2(PC)
    	MOVD	R0, 0(R0)
    
    	// Initialize m->procid to Linux tid
    	SYSCALL $SYS_gettid
    
    	MOVD	-24(R1), R12       // fn
    	MOVD	-16(R1), R8        // g
    	MOVD	-8(R1), R7         // m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top