Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,284 for mergeFn (0.2 sec)

  1. pilot/pkg/model/virtualservice.go

    		merged := mergeHTTPRoute(root, subRoute)
    		if merged != nil {
    			out = append(out, merged)
    		}
    	}
    	return out
    }
    
    // merge the two HTTPRoutes, if there is a conflict with root, the delegate route is ignored
    func mergeHTTPRoute(root *networking.HTTPRoute, delegate *networking.HTTPRoute) *networking.HTTPRoute {
    	// suppose there are N1 match conditions in root, N2 match conditions in delegate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/regexp/onepass.go

    	}
    	var (
    		lx, rx int
    	)
    	merged := make([]rune, 0)
    	next := make([]uint32, 0)
    	ok := true
    	defer func() {
    		if !ok {
    			merged = nil
    			next = nil
    		}
    	}()
    
    	ix := -1
    	extend := func(newLow *int, newArray *[]rune, pc uint32) bool {
    		if ix > 0 && (*newArray)[*newLow] <= merged[ix] {
    			return false
    		}
    		merged = append(merged, (*newArray)[*newLow], (*newArray)[*newLow+1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pkg/test/util/yml/apply.go

    	}
    
    	merged, err := strategicpatch.StrategicMergePatch(mainYaml, overlayYaml, &deploymentMerge)
    	if err != nil {
    		return "", fmt.Errorf("json merge error (%s) for base object: \n%s\n override object: \n%s", err, mainYaml, overlayYaml)
    	}
    
    	resYaml, err := yaml.JSONToYAML(merged)
    	if err != nil {
    		return "", fmt.Errorf("jsonToYAML error (%s) for merged object: \n%s", err, merged)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager.go

    	"k8s.io/apimachinery/pkg/util/managedfields/internal"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // FieldManager updates the managed fields and merges applied
    // configurations.
    type FieldManager = internal.FieldManager
    
    // NewDefaultFieldManager creates a new FieldManager that merges apply requests
    // and update managed fields for other types of requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java

                metadata.storeInLocalRepository(localRepo, localRepo);
                merged = true;
            } catch (Exception e) {
                throw new RepositoryException(e.getMessage(), e);
            }
        }
    
        public boolean isMerged() {
            return merged;
        }
    
        public String getGroupId() {
            return emptify(metadata.getGroupId());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderFactory.kt

    }
    
    /**
     * [KotlinPackageProviderMerger] allows merging multiple [KotlinPackageProvider]s into a more efficient package provider.
     *
     * Package providers should not be naively merged by combining scopes and calling [createPackageProvider], because there may be additional
     * package providers which do not operate based on scopes (e.g. resolve extension package providers).
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference.h

                       const tensorflow::FunctionLibraryDefinition* fnlib_def,
                       GraphShapeInfo* shape_info);
    
    // Merges two InferredShapes. Return an error if the two shapes cannot be
    // merged.
    absl::StatusOr<InferredShape> MergeInferredShapes(const InferredShape& a,
                                                      const InferredShape& b);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	mergeOptions := MergeOptions{
    		MergeParallelList:    false,
    		IgnoreUnmatchedNulls: false,
    	}
    	merged := JSONMap{}
    	var err error
    	for _, patch := range patches {
    		merged, err = mergeMap(merged, patch, schema, mergeOptions)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return merged, nil
    }
    
    // handleDirectiveInMergeMap handles the patch directive when merging 2 maps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    		portMap = proxy.MergedGateway.PortMap
    	}
    
    	// only merge is applicable for route configuration.
    	for _, rp := range efw.Patches[networking.EnvoyFilter_ROUTE_CONFIGURATION] {
    		if rp.Operation != networking.EnvoyFilter_Patch_MERGE {
    			continue
    		}
    		if commonConditionMatch(patchContext, rp) &&
    			routeConfigurationMatch(patchContext, routeConfiguration, rp, portMap) {
    			merge.Merge(routeConfiguration, rp.Value)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/internal/profile/profile.go

    					return fmt.Errorf("inconsistent function %p: %d", f, f.ID)
    				}
    			}
    		}
    	}
    	return nil
    }
    
    // Aggregate merges the locations in the profile into equivalence
    // classes preserving the request attributes. It also updates the
    // samples to point to the merged locations.
    func (p *Profile) Aggregate(inlineFrame, function, filename, linenumber, address bool) error {
    	for _, m := range p.Mapping {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top