Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for Consolidated (0.16 sec)

  1. src/cmd/compile/internal/types2/lookup.go

    				if alt := seen.lookup(named); alt != nil {
    					// We have seen this type before, at a more shallow depth
    					// (note that multiples of this type at the current depth
    					// were consolidated before). The type at that depth shadows
    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/go/types/lookup.go

    				if alt := seen.lookup(named); alt != nil {
    					// We have seen this type before, at a more shallow depth
    					// (note that multiples of this type at the current depth
    					// were consolidated before). The type at that depth shadows
    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. cmd/erasure-multipart.go

    		fi.AddObjectPart(partI.Number, partI.ETag, partI.Size, partI.ActualSize, partI.ModTime, partI.Index, partI.Checksums)
    	}
    
    	// Calculate full object size.
    	var objectSize int64
    
    	// Calculate consolidated actual size.
    	var objectActualSize int64
    
    	// Order online disks in accordance with distribution order.
    	// Order parts metadata in accordance with distribution order.
    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. operator/pkg/helmreconciler/prune.go

    		var errs util.Errors
    		if all {
    			errs = util.AppendErr(errs, h.deleteResources(nil, labels, "", objects, all))
    		} else {
    			for cname, manifest := range manifests.Consolidated() {
    				errs = util.AppendErr(errs, h.deleteResources(object.AllObjectHashes(manifest), labels, cname, objects, all))
    			}
    		}
    		return errs.ToError()
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    // The goal here is to consolidate all xds related connections to istiod/envoy into a
    // single tcp connection with multiple gRPC streams.
    // TODO: Right now, the workloadSDS server and gatewaySDS servers are still separate
    // connections. These need to be consolidated.
    // TODO: consolidate/use ADSC struct - a lot of duplication.
    type XdsProxy struct {
    	stopChan             chan struct{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gc.go

    	for _, f := range a.Package.CgoFiles {
    		cgoFiles[f] = true
    	}
    
    	// TODO(matloob): Higher up in the stack, when the logic for deciding when to make copies
    	// of c/c++/m/f/hfiles is consolidated, use the same logic that Build uses to determine
    	// whether to create the copies in objdir to decide whether to rewrite objdir to the
    	// package directory here.
    	var overlayNonGoRewrites string // rewrites for non-go files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/testing/fuzz.go

    //
    // fRunner is analogous to tRunner, which wraps subtests started with T.Run.
    // Unit tests and fuzz tests work a little differently, so for now, these
    // functions aren't consolidated. In particular, because there are no F.Run and
    // F.Parallel methods, i.e., no fuzz sub-tests or parallel fuzz tests, a few
    // simplifications are made. We also require that F.Fuzz, F.Skip, or F.Fail is
    // called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// Only stores wildcard destination rules
    	wildcardDestRules map[host.Name][]*ConsolidatedDestRule
    }
    
    // ConsolidatedDestRule represents a dr and from which it is consolidated.
    type ConsolidatedDestRule struct {
    	// rule is merged from the following destinationRules.
    	rule *config.Config
    	// the original dest rules from which above rule is merged.
    	from []types.NamespacedName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue51658.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test checks syntax errors which differ between
    // go/parser and the syntax package.
    // TODO: consolidate eventually
    
    package p
    
    type F { // ERRORx "expected type|type declaration"
    	float64
    } // ERRORx "expected declaration|non-declaration statement"
    
    func _[T F | int](x T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1016 bytes
    - Viewed (0)
  10. samples/builder/README.md

    # Sample builder
    
    This folder contains docker image building logic for various samples, to consolidate things.
    Note some images still user per-folder config, so this is not complete.
    
    ## Building for testing
    
    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
Back to top