Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 207 for INITIALIZING (0.23 sec)

  1. internal/hash/reader_test.go

    			r, err := NewReader(context.Background(), testCase.src, testCase.size, testCase.md5hex, testCase.sha256hex, testCase.actualSize)
    			if err != nil {
    				t.Fatalf("Test %q: Initializing reader failed %s", testCase.desc, err)
    			}
    			_, err = io.Copy(io.Discard, r)
    			if err != nil {
    				if testCase.err == nil {
    					t.Errorf("Test %q; got unexpected error: %v", testCase.desc, err)
    					return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/inittask.go

    // to be run for a package. For package p, the p..inittask
    // symbol contains a list of init functions to run, both
    // explicit user init functions and implicit compiler-generated
    // init functions for initializing global variables like maps.
    //
    // In addition, inittask records have dependencies between each
    // other, mirroring the import dependencies. So if package p
    // imports package q, then there will be a dependency p -> q.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/probe.go

    			klog.Errorf("Flexvolume prober watch: %s", err)
    		}
    	}, func(err error) {
    		klog.Errorf("Received an error from watcher: %s", err)
    	})
    	if err != nil {
    		return fmt.Errorf("error initializing watcher: %s", err)
    	}
    
    	if err := prober.addWatchRecursive(prober.pluginDir); err != nil {
    		return fmt.Errorf("error adding watch on Flexvolume directory: %s", err)
    	}
    
    	prober.watcher.Run()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

            // can get initialized in a different classloader, which then makes it broken and unusable
            // in the test class (because the native shared library is loaded from another classloader).
            // By initializing it here, we ensure that it is loaded from the classloader the test engine
            // also uses.
            NativeServicesTestFixture.initialize();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/analysis/analysis_test.go

    	// todo for some reason when a WorkloadEntry is created a "Reconciled" Condition isn't added.
    	for i, cond := range x.Status.Conditions {
    		// remove reconciled conditions for when WorkloadEntry starts initializing
    		// with a reconciled status.
    		if cond.Type == "Reconciled" {
    			statusConds = append(statusConds[:i], statusConds[i+1:]...)
    		}
    	}
    
    	if !cmp.Equal(statusConds, expectedConds, protocmp.Transform()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. cmd/server-main.go

    	if err == nil {
    		return false
    	}
    
    	notInitialized := strings.Contains(err.Error(), "Server not initialized, please try again") ||
    		errors.Is(err, errServerNotInitialized)
    
    	// Initializing sub-systems needs a retry mechanism for
    	// the following reasons:
    	//  - Read quorum is lost just after the initialization
    	//    of the object layer.
    	//  - Write quorum not met when upgrading configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. pkg/kube/namespace/filter.go

    	// convert LabelSelectors to Selectors
    	for _, selector := range discoverySelectors {
    		ls, err := LabelSelectorAsSelector(selector)
    		if err != nil {
    			log.Errorf("error initializing discovery namespaces filter, invalid discovery selector: %v", err)
    			return
    		}
    		selectors = append(selectors, ls)
    	}
    
    	// range over all namespaces to get discovery namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    					nil,
    				},
    			},
    			expectedError: nil,
    		},
    	}
    
    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			// Setup the various pieces such as the fake dialer prior to initializing the egress selector.
    			// Go doesn't allow function pointer comparison, nor does its reflect package
    			// So overriding the default dialer to detect if it is returned.
    			fake := &fakeEgressSelection{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    // to a minimum.
    //
    // Some best practices:
    //
    //   - Minimize calls Extend when handling API requests. Where possible, call Extend
    //     when initializing components.
    //   - If an EnvSets returned by Extend can be used to compile multiple CEL programs,
    //     call Extend once and reuse the returned EnvSets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. plugin/pkg/admission/limitranger/admission_test.go

    	limitRange := validLimitRangeNoDefaults()
    	mockClient := newMockClientForTest([]corev1.LimitRange{limitRange})
    	handler, informerFactory, err := newHandlerForTest(mockClient)
    	if err != nil {
    		t.Errorf("unexpected error initializing handler: %v", err)
    	}
    	informerFactory.Start(wait.NeverStop)
    
    	testPod := validPod("testPod", 1, api.ResourceRequirements{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top