Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for INITIALIZING (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerStatus.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler;
    
    public enum CrawlerStatus {
        INITIALIZING, RUNNING, DONE;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 720 bytes
    - Viewed (0)
  9. istioctl/pkg/writer/ztunnel/configdump/testdata/secretsummary.txt

    spiffe://cluster.local/ns/istio-system/sa/istiod         Root     Available        false          8a516645c40ce76c2c0d27ab4e2461c1     2022-03-18T13:04:49Z     2022-03-21T13:04:49Z
    spiffe://cluster.local/ns/istio-system/sa/ztunnel        NA       Initializing     false          NA                                   NA                       NA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 16:38:16 UTC 2024
    - 1022 bytes
    - Viewed (0)
  10. cmd/xl-storage_unix_test.go

    		expectedUmask int
    	}{
    		{"is-this-valid", getUmask()},
    	}
    	testCase := testCases[0]
    
    	// Initialize a new xlStorage layer.
    	disk, err := newLocalXLStorage(tmpPath)
    	if err != nil {
    		t.Fatalf("Initializing xlStorage failed with %s.", err)
    	}
    
    	// Attempt to create a volume to verify the permissions later.
    	// MakeVol creates 0777.
    	if err = disk.MakeVol(context.Background(), testCase.volName); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 25 19:37:26 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top