Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for INITIALIZING (0.27 sec)

  1. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        #  You can suppress truncating tables at initializing schema.
        #
        #; isSuppressTruncateTable = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isSuppressDropForeignKey: (NotRequired - Default false)
        #  You can suppress dropping foreign keys at initializing schema.
        #
        #; isSuppressDropForeignKey = false
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/fix/egltype.go

    	desc:     `Fixes initializers of EGLDisplay`,
    	disabled: false,
    }
    
    // Old state:
    //
    //	type EGLDisplay unsafe.Pointer
    //
    // New state:
    //
    //	type EGLDisplay uintptr
    //
    // This fix finds nils initializing these types and replaces the nils with 0s.
    func eglfixDisp(f *ast.File) bool {
    	return typefix(f, func(s string) bool {
    		return s == "C.EGLDisplay"
    	})
    }
    
    var eglFixConfig = fix{
    	name:     "eglconf",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. plugin/pkg/admission/namespace/autoprovision/admission_test.go

    func TestAdmission(t *testing.T) {
    	namespace := "test"
    	mockClient := newMockClientForTest([]string{})
    	handler, informerFactory, err := newHandlerForTest(mockClient)
    	if err != nil {
    		t.Errorf("unexpected error initializing handler: %v", err)
    	}
    	informerFactory.Start(wait.NeverStop)
    
    	pod := newPod(namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/mesh.go

    // - the SHARED_MESH_CONFIG config map will also be loaded and merged.
    func (s *Server) initMeshConfiguration(args *PilotArgs, fileWatcher filewatcher.FileWatcher) {
    	log.Infof("initializing mesh configuration %v", args.MeshConfigFile)
    	defer func() {
    		if s.environment.Watcher != nil {
    			log.Infof("mesh configuration: %s", mesh.PrettyFormatOfMeshConfig(s.environment.Mesh()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. releasenotes/notes/double-ack.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 38709
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 02 00:07:56 UTC 2022
    - 219 bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/ready/probe.go

    	// Server is running the cluster manager initialization callbacks (e.g., RDS).
    	Initializing ServerInfoState = 3
    )
    
    func StateString(state ServerInfoState) string {
    	switch state {
    	case Live:
    		return "LIVE"
    	case Draining:
    		return "DRAINING"
    	case PreInitializing:
    		return "PRE_INITIALIZING"
    	case Initializing:
    		return "INITIALIZING"
    	}
    	return "UNKNOWN"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/server.go

    	if err != nil {
    		return nil, fmt.Errorf("error initializing kube client: %w", err)
    	}
    
    	cfg := &iptables.Config{
    		RestoreFormat: true,
    		RedirectDNS:   args.DNSCapture,
    		EnableIPv6:    args.EnableIPv6,
    	}
    
    	log.Debug("creating ipsets in the node netns")
    	set, err := createHostsideProbeIpset(cfg.EnableIPv6)
    	if err != nil {
    		return nil, fmt.Errorf("error initializing hostside probe ipset: %w", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue15747b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15747: If an ODCL is dropped, for example when inlining,
    // then it's easy to end up not initializing the '&x' pseudo-variable
    // to point to an actual allocation. The liveness analysis will detect
    // this and abort the computation, so this test just checks that the
    // compilation succeeds.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 02:39:16 UTC 2017
    - 539 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        // The very first event starts the Initializing phase
                        // TODO - should use BuildRequestMetaData to determine the build start time
                        buildStartTimestamp = startEvent.getTimestamp();
                        buildProgressOperationId = startEvent.getProgressOperationId();
                        phaseStarted(startEvent, Phase.Initializing);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. test/fixedbugs/bug433.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that initializing struct fields out of order still runs
    // functions in the right order.  This failed with gccgo.
    
    package main
    
    type S struct {
    	i1, i2, i3 int
    }
    
    var G int
    
    func v(i int) int {
    	if i != G {
    		panic(i)
    	}
    	G = i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 30 15:42:21 UTC 2012
    - 552 bytes
    - Viewed (0)
Back to top