Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for Truly (0.1 sec)

  1. pkg/controller/podgc/gc_controller.go

    	gcCheckPeriod = 20 * time.Second
    	// quarantineTime defines how long Orphaned GC waits for nodes to show up
    	// in an informer before issuing a GET call to check if they are truly gone
    	quarantineTime = 40 * time.Second
    )
    
    type PodGCController struct {
    	kubeClient clientset.Interface
    
    	podLister        corelisters.PodLister
    	podListerSynced  cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

             * the IP address as a 'Subject Alternative Name' which was deemed far too complicated for our test
             * use case.
             *
             * Additionally, in the rare case that a user or a plugin author truly needs to test with a localhost
             * server, they can use http://127.0.0.1
             */
            if ("127.0.0.1".equals(url.getHost())) {
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      get as a result.
    
    * Implications for Resolution
    
    ** Dependency Resolution
    
      This one is obvious...we only have access to the repositories using
      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    		if _, err := c.kubeClient.ResourceV1alpha2().ResourceSlices().Create(ctx, slice, metav1.CreateOptions{}); err != nil {
    			return fmt.Errorf("create node resource slice: %w", err)
    		}
    	}
    
    	// All remaining slices are truly orphaned.
    	for i := 0; i < numObsoleteSlices; i++ {
    		slice := obsoleteSlices[i]
    		logger.V(5).Info("Deleting obsolete node resource slice", "slice", klog.KObj(slice))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/hash/maphash/smhasher_test.go

    	// Each entry in the grid should be about REP/2.
    	// More precisely, we did N = k.bits() * hashSize experiments where
    	// each is the sum of REP coin flips. We want to find bounds on the
    	// sum of coin flips such that a truly random experiment would have
    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

             * the IP address as a 'Subject Alternative Name' which was deemed far too complicated for our test
             * use case.
             *
             * Additionally, in the rare case that a user or a plugin author truly needs to test with a localhost
             * server, they can use http://127.0.0.1
             */
            if ("127.0.0.1".equals(url.getHost())) {
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    			if volumeToMount.PluginIsAttachable {
    				attachableVolumePlugin, err := dswp.volumePluginMgr.FindAttachablePluginBySpec(volumeToMount.VolumeSpec)
    				// only this means the plugin is truly non-attachable
    				if err == nil && attachableVolumePlugin == nil {
    					// It is not possible right now for a CSI plugin to be both attachable and non-deviceMountable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	// ensure that the status is up to date on the namespace
    	// if we get a not found error, we assume the namespace is truly gone
    	namespace, err = d.retryOnConflictError(ctx, namespace, d.updateNamespaceStatusFunc)
    	if err != nil {
    		if errors.IsNotFound(err) {
    			return nil
    		}
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. src/runtime/hash_test.go

    	// Each entry in the grid should be about REP/2.
    	// More precisely, we did N = k.bits() * hashSize experiments where
    	// each is the sum of REP coin flips. We want to find bounds on the
    	// sum of coin flips such that a truly random experiment would have
    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    // plugin.  All values are passed by string and require interpretation by the
    // plugin. Passing config as strings is the least desirable option but can be
    // used for truly one-off configuration. The binary should still use strong
    // typing for this value when binding CLI values before they are passed as
    // strings in OtherAttributes.
    type VolumeConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top