Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for isSelect (0.25 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // ID post-install.
      //
      // If the mesh admin does not specify a value, Istio will use the value of the
      // mesh's Trust Domain. The best practice is to select a proper Trust Domain
      // value.
      string meshID = 53;
    
      // Configure the mesh networks to be used by the Split Horizon EDS.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    		poolcleanup()
    	}
    
    	// clear boringcrypto caches
    	for _, p := range boringCaches {
    		atomicstorep(p, nil)
    	}
    
    	// clear unique maps
    	if uniqueMapCleanup != nil {
    		select {
    		case uniqueMapCleanup <- struct{}{}:
    		default:
    		}
    	}
    
    	// Clear central sudog cache.
    	// Leave per-P caches alone, they have strictly bounded size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    					print(b)
    				}
    				println()
    				print("runtime: type=", toRType(et).string(), "\n")
    				throw("found two different masks from two different methods")
    			}
    		}
    
    		// Select the heap mask to return. We may not have a type mask.
    		mask = maskFromHeap
    
    		// Make sure we keep ep alive. We may have stopped referencing
    		// ep's data pointer sometime before this point and it's possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/runtime/map.go

    //
    // A map is just a hash table. The data is arranged
    // into an array of buckets. Each bucket contains up to
    // 8 key/elem pairs. The low-order bits of the hash are
    // used to select a bucket. Each bucket contains a few
    // high-order bits of each hash to distinguish the entries
    // within a single bucket.
    //
    // If more than 8 keys hash to a bucket, we chain on
    // extra buckets.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    const NamespaceNameLabel = "kubernetes.io/metadata.name"
    
    // toNamespaceSet converts a set of namespace labels to a Set that can be used to select against.
    func toNamespaceSet(name string, labels map[string]string) klabels.Set {
    	// If namespace label is not set, implicitly insert it to support older Kubernetes versions
    	if labels[NamespaceNameLabel] == name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    			}
    			if ok {
    				continue
    			}
    		} // in all other cases metadata is corrupt, do not read from it.
    
    		onlineMeta[i] = FileInfo{}
    		onlineDisks[i] = nil
    	}
    
    	select {
    	case mrfCheck <- fi.ShallowCopy():
    	case <-ctx.Done():
    		return fi, onlineMeta, onlineDisks, toObjectErr(ctx.Err(), bucket, object)
    	}
    
    	return fi, onlineMeta, onlineDisks, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    of packages named on the command line to use newer minor or patch
    releases when available.
    
    The -u=patch flag (not -u patch) also instructs get to update dependencies,
    but changes the default to select patch releases.
    
    When the -t and -u flags are used together, get will update
    test dependencies as well.
    
    The -x flag prints commands as they are executed. This is useful for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	if numNodes == len(nodes) {
    		// Copy all node names.
    		for _, node := range nodes {
    			potentialNodes = append(potentialNodes, node.Node().Name)
    		}
    	} else {
    		// Select a random subset of the nodes to comply with
    		// the PotentialNodes length limit. Randomization is
    		// done for us by Go which iterates over map entries
    		// randomly.
    		nodeNames := map[string]struct{}{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	store := memory.Make(collections.Pilot)
    	configController := memory.NewController(store)
    
    	stop := test.NewStop(t)
    	go configController.Run(stop)
    	fx := xdsfake.NewFakeXDS()
    	go func() {
    		for {
    			select {
    			case <-stop:
    				return
    			case <-fx.Events: // drain
    			}
    		}
    	}()
    
    	meshcfg := mesh.NewFixedWatcher(mesh.DefaultMeshConfig())
    	serviceController := NewController(configController, fx, meshcfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    }
    
    func (u *uncountedTerminatedPods) Failed() sets.Set[string] {
    	if u == nil {
    		return nil
    	}
    	return u.failed
    }
    
    func errorFromChannel(errCh <-chan error) error {
    	select {
    	case err := <-errCh:
    		return err
    	default:
    	}
    	return nil
    }
    
    // ensureJobConditionStatus appends or updates an existing job condition of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top