Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for place (0.04 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	var start, end uint32
    	for {
    		// Determine where record should end, and grow file if needed.
    		limit := m.load32(m.hdrLen + limitOff)
    		start, end = m.place(limit, name)
    		debugPrintf("place %s at %#x-%#x\n", name, start, end)
    		if int64(end) > int64(len(m.mapping.Data)) {
    			newM, err := m.extend(end)
    			if err != nil {
    				return nil, nil, err
    			}
    			if m != orig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler.go

    	err := sched.Profiles.Close()
    	if err != nil {
    		logger.Error(err, "Failed to close plugins")
    	}
    }
    
    // NewInformerFactory creates a SharedInformerFactory and initializes a scheduler specific
    // in-place podInformer.
    func NewInformerFactory(cs clientset.Interface, resyncPeriod time.Duration) informers.SharedInformerFactory {
    	informerFactory := informers.NewSharedInformerFactory(cs, resyncPeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

            if (nodes.add(node) && nodes.size() > 1) {
                // The registered nodes may contain nodes which are no longer selected.
                // We don't remove them from the list in the first place because it proved to be
                // slower than filtering as needed.
                ModuleIdentifier rootId = null;
                final List<NodeState> candidatesForConflict = Lists.newArrayListWithCapacity(nodes.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    }
    
    func (rb *IptablesRuleBuilder) BuildV6Restore() string {
    	return rb.buildRestore(rb.rules.rulesv6)
    }
    
    // AppendVersionedRule is a wrapper around AppendRule that substitutes an ipv4/ipv6 specific value
    // in place in the params. This allows appending a dual-stack rule that has an IP value in it.
    func (rb *IptablesRuleBuilder) AppendVersionedRule(ipv4 string, ipv6 string, command log.Command, chain string, table string, params ...string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/config/validation/virtualservice.go

    	if http.Timeout != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(http.Timeout))
    	}
    
    	return
    }
    
    // validateAuthorityRewrite ensures we only attempt rewrite authority in a single place.
    func validateAuthorityRewrite(rewrite *networking.HTTPRewrite, headers *networking.Headers) error {
    	current := rewrite.GetAuthority()
    	for k, v := range headers.GetRequest().GetSet() {
    		if !isAuthorityHeader(k) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            configurationCacheRunLenient()
    
            then: "the cache entry is reused"
            configurationCache.assertStateLoaded()
    
            when: "the file used in configuration is deleted and a directory is created in its place"
            assert accessedFile.isFile()
            assert accessedFile.delete()
            assert accessedFile.mkdirs()
            configurationCacheRunLenient()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager.go

    	i.images = images
    }
    
    // get gets image list from image cache.
    // NOTE: The caller of get() should not do mutating operations on the
    // returned list that could cause data race against other readers (e.g.
    // in-place sorting the returned list)
    func (i *imageCache) get() []container.Image {
    	i.Lock()
    	defer i.Unlock()
    	return i.images
    }
    
    // Information about the images we track.
    type imageRecord struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/kube.go

    		return nil, err
    	}
    
    	// Populate the revisions for the control plane.
    	var revisions resource.RevVerMap
    	if !cfg.DeployIstio {
    		// Using a pre-installed control plane. Get the revisions from the
    		// command-line.
    		revisions = ctx.Settings().Revisions
    	} else if len(iop.Spec.Revision) > 0 {
    		// Use revisions from the default control plane operator.
    		revisions = resource.RevVerMap{
    			iop.Spec.Revision: "",
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Striped64.java

       */
      static final ThreadLocal<int @Nullable []> threadHashCode = new ThreadLocal<>();
    
      /** Generator of new random hash codes */
      static final Random rng = new Random();
    
      /** Number of CPUS, to place bound on table size */
      static final int NCPU = Runtime.getRuntime().availableProcessors();
    
      /** Table of cells. When non-null, size is a power of 2. */
      @CheckForNull transient volatile Cell[] cells;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/Striped64.java

       */
      static final ThreadLocal<int @Nullable []> threadHashCode = new ThreadLocal<>();
    
      /** Generator of new random hash codes */
      static final Random rng = new Random();
    
      /** Number of CPUS, to place bound on table size */
      static final int NCPU = Runtime.getRuntime().availableProcessors();
    
      /** Table of cells. When non-null, size is a power of 2. */
      @CheckForNull transient volatile Cell[] cells;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top