Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 737 for pieces (0.26 sec)

  1. pilot/pkg/status/resource.go

    func ResourceFromString(s string) *Resource {
    	pieces := strings.Split(s, "/")
    	if len(pieces) != 6 {
    		scope.Errorf("cannot unmarshal %s into resource identifier", s)
    		return nil
    	}
    	return &Resource{
    		GroupVersionResource: schema.GroupVersionResource{
    			Group:    pieces[0],
    			Version:  pieces[1],
    			Resource: pieces[2],
    		},
    		Namespace:  pieces[3],
    		Name:       pieces[4],
    		Generation: pieces[5],
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 30 16:13:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/parallelize/parallelism.go

    func (p Parallelizer) Until(ctx context.Context, pieces int, doWorkPiece workqueue.DoWorkPieceFunc, operation string) {
    	goroutinesMetric := metrics.Goroutines.WithLabelValues(operation)
    	withMetrics := func(piece int) {
    		goroutinesMetric.Inc()
    		doWorkPiece(piece)
    		goroutinesMetric.Dec()
    	}
    
    	workqueue.ParallelizeUntil(ctx, p.parallelism, pieces, withMetrics, workqueue.WithChunkSize(chunkSizeFor(pieces, p.parallelism)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:12:30 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config/source.go

    	raw, err := s.read()
    	if err != nil {
    		return nil, err
    	}
    
    	pieces := yml.SplitString(raw)
    	if len(pieces) == 1 {
    		// There was nothing to split. Just return the original source.
    		return []Source{s}, nil
    	}
    
    	out := make([]Source, 0, len(pieces))
    	for _, p := range pieces {
    		out = append(out, YAML(p).WithParams(s.Params()))
    	}
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. architecture/README.md

    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Gradle tracks the state of each piece and transitions each piece through its lifecycle as the build runs.
    
    A central part of the Gradle architecture is the "build state model", which holds the state for each piece and coordinates state transitions and other mutations. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/route.go

    }
    
    func renderConfig(configPath string) string {
    	if strings.HasPrefix(configPath, "/apis/networking.istio.io/v1alpha3/namespaces/") {
    		pieces := strings.Split(configPath, "/")
    		if len(pieces) != 8 {
    			return ""
    		}
    		return fmt.Sprintf("%s.%s", pieces[7], pieces[5])
    	}
    	return "<unknown>"
    }
    
    // PrintRouteDump prints the relevant routes in the config dump to the ConfigWriter stdout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/bucket-extensions.kt

     * if some elements are too small, they will be aggregated by smallElementAggregateFunction.
     *
     * @param list the list to split, must be ordered by size desc
     * @param toIntFunction the function used to map the element to its "size"
     * @param largeElementSplitFunction the function used to further split the large element into smaller pieces
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 05:17:44 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. pkg/log/options.go

    }
    
    func convertScopedLevel(sl string) (string, Level, error) {
    	var s string
    	var l string
    
    	pieces := strings.Split(sl, ":")
    	if len(pieces) == 1 {
    		s = DefaultScopeName
    		l = pieces[0]
    	} else if len(pieces) == 2 {
    		s = pieces[0]
    		l = pieces[1]
    	} else {
    		return "", NoneLevel, fmt.Errorf("invalid output level format '%s'", sl)
    	}
    
    	level, ok := stringToLevel[l]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/cluster/ports/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package ports defines ports used by various pieces of the kubernetes
    // infrastructure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:25 UTC 2020
    - 724 bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Workers allow running pieces of work in the background, either
     * in-process in isolated classloaders or out-of-process in reusable
     * daemons.
     *
     * @since 3.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 817 bytes
    - Viewed (0)
  10. pkg/proxy/config/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package config provides decoupling between various configuration sources (etcd, files,...) and
    // the pieces that actually care about them (loadbalancer, proxy). Config takes 1 or more
    // configuration sources and allows for incremental (add/remove) and full replace (set)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.3K bytes
    - Viewed (0)
Back to top