Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 207 for INITIALIZING (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		}
    		qs.promiseFactory = qsc.factory.promiseFactoryFactory(qs)
    	}
    	qs.setConfiguration(context.Background(), qsc.qCfg, qsc.dealer, dCfg)
    	return qs
    }
    
    // createQueues is a helper method for initializing an array of n queues
    func createQueues(n, baseIndex int) []*queue {
    	fqqueues := make([]*queue, n)
    	for i := 0; i < n; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager.go

    	// First we take care of the exceptional flow (scenarios 2 and 3). In both flows, kubelet is reinitializing, and while kubelet is initializing, sources are NOT all ready.
    	// Is this a simple kubelet restart (scenario 2)? To distinguish, we use the information we got for runtime. If we are asked to allocate devices for containers reported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. cmd/erasure-multipart.go

    	if !result.IsTruncated {
    		result.NextKeyMarker = ""
    		result.NextUploadIDMarker = ""
    	}
    
    	return result, nil
    }
    
    // newMultipartUpload - wrapper for initializing a new multipart
    // request; returns a unique upload id.
    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    // '.minio.sys/multipart/bucket/object/uploads.json' on all the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    	textsectmap []textsect
    	typelinks   []int32 // offsets from types
    	itablinks   []*itab
    
    	ptab []ptabEntry
    
    	pluginpath string
    	pkghashes  []modulehash
    
    	// This slice records the initializing tasks that need to be
    	// done to start up the program. It is built by the linker.
    	inittasks []*initTask
    
    	modulename   string
    	modulehashes []modulehash
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			scheduler.NewRateLimitedTimedQueue(
    				flowcontrol.NewTokenBucketRateLimiter(nc.evictionLimiterQPS, scheduler.EvictionRateLimiterBurst))
    		// Init the metric for the new zone.
    		logger.Info("Initializing eviction metric for zone", "zone", zone)
    		evictionsTotal.WithLabelValues(zone).Add(0)
    	}
    }
    
    func (nc *Controller) markNodeForTainting(node *v1.Node, status v1.ConditionStatus) bool {
    	nc.evictorLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    	healthzServer *healthcheck.ProxierHealthServer,
    	healthzBindAddress string,
    	config config.KubeProxyWinkernelConfiguration,
    ) (*Proxier, error) {
    	if nodeIP == nil {
    		klog.InfoS("Invalid nodeIP, initializing kube-proxy with 127.0.0.1 as nodeIP")
    		nodeIP = netutils.ParseIPSloppy("127.0.0.1")
    	}
    
    	// windows listens to all node addresses
    	nodePortAddresses := proxyutil.NewNodePortAddresses(ipFamily, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. doc/asm.html

    This function would be called from Go source for package <code>runtime</code> using the
    simple name <code>profileloop</code>.
    </p>
    
    <p>
    Global data symbols are defined by a sequence of initializing
    <code>DATA</code> directives followed by a <code>GLOBL</code> directive.
    Each <code>DATA</code> directive initializes a section of the
    corresponding memory.
    The memory not explicitly initialized is zeroed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  8. src/image/image.go

    // image data in a format such as GIF, JPEG or PNG. Decoding any particular
    // image format requires the prior registration of a decoder function.
    // Registration is typically automatic as a side effect of initializing that
    // format's package so that, to decode a PNG image, it suffices to have
    //
    //	import _ "image/png"
    //
    // in a program's main package. The _ means to import a package purely for its
    // initialization side effects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }});
            }
    
            /**
             * Adds a getter that returns the value of the given field, initializing it if null using the given code. The code should leave the value on the top of the stack.
             */
            private void addLazyGetter(
                String methodName,
                Type returnType,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            op, input.getType(), input, expanded_item, start_position);
        return success();
      }
    
      bool enable_dynamic_update_slice;
    };
    
    // Rewrites op of the template type initializing a TensorList with a list of ops
    // to generate an equivalent raw tensor. Derived classes are required to
    // override GetNumElements method.
    template <typename OpT>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top