Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Consolidated (0.25 sec)

  1. pilot/pkg/security/authz/model/model.go

    	extended extendedGenerator
    }
    
    type ruleList struct {
    	rules []*rule
    }
    
    // Model represents a single rule from an authorization policy. The conditions of the rule are consolidated into
    // permission or principal to align with the Envoy RBAC filter API.
    type Model struct {
    	permissions []ruleList
    	principals  []ruleList
    }
    
    // New returns a model representing a single authorization policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

    import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
    
    /**
     * Use a regular expression search to find and resolve expressions within the POM.
     *
     * TODO Consolidate this logic with the PluginParameterExpressionEvaluator, minus deprecations/bans.
     */
    @Deprecated
    public abstract class AbstractStringBasedModelInterpolator extends AbstractLogEnabled
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

            continue;
          }
          // To guarantee that the new values are in the same order as the old
          // ones, we create individual ops for the non-canonicalizable operands.
          // For simplicity, we don't consolidate these ops when all the
          // non-canonicalizable operands are adjacent.
          new_values.push_back(
              rewriter
                  .create<fallback_async::CoreRTTensorHandleToFallbackTensorOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top