Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,399 for _Merge (0.1 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/conflict.go

    	"time"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    )
    
    // NewConflictError returns an error including details on the requests apply conflicts
    func NewConflictError(conflicts merge.Conflicts) *errors.StatusError {
    	causes := []metav1.StatusCause{}
    	for _, conflict := range conflicts {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields_test.go

    		t.Errorf("elemType = %v, want: %v", elemType, reflect.TypeOf([]Elem{}))
    	}
    	if !reflect.DeepEqual(patchStrategies, []string{"merge"}) {
    		t.Errorf("patchStrategies = %v, want: %v", patchStrategies, []string{"merge"})
    	}
    	if patchMergeKey != "key" {
    		t.Errorf("patchMergeKey = %v, want: %v", patchMergeKey, "key")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 769 bytes
    - Viewed (0)
  3. internal/pubsub/mask.go

    	return bits.OnesCount64(uint64(t)) == 1
    }
    
    // FromUint64 will set a mask to the uint64 value.
    func (t *Mask) FromUint64(m uint64) {
    	*t = Mask(m)
    }
    
    // Merge will merge other into t.
    func (t *Mask) Merge(other Mask) {
    	*t |= other
    }
    
    // MergeMaskable will merge other into t.
    func (t *Mask) MergeMaskable(other Maskable) {
    	*t |= Mask(other.Mask())
    }
    
    // SetIf will add other if b is true.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    }
    
    // -----
    
    // Check that a tf_executor.Merge parent is a graph.
    func.func @parent_is_graph(%arg0: tensor<*xf32>) {
      "tf.some_op"() ({
        %value, %idx, %ctlMerge = tf_executor.Merge %arg0, %arg0 : tensor<*xf32>
    // expected-error@-1 {{'tf_executor.Merge' op expects parent op 'tf_executor.graph'}}
      }) : () -> ()
      func.return
    }
    
    // -----
    
    // Check that merge has at least one operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  5. .github/workflows/CheckBadMerge.groovy

     * e.g https://github.com/gradle/gradle/pull/25825
     *
     * This script is to check if there is any merge commit that brings changes from release branch to master.
     * Usage: groovy CheckBadMerge.groovy <commit1> <commit2> ...
     * If any "bad" merge commit is found, it will print the details and exit with non-zero code.
     */
    class CheckBadMerge {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 10:35:44 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. test/codegen/bitfield.go

    }
    
    // sbfx combinations.
    // merge shifts with sbfiz into sbfx.
    func sbfx9(x int32) int32 {
    	return (x << 3) >> 4 // arm64:"SBFX\t[$]1, R[0-9]+, [$]28",-"LSL",-"ASR"
    }
    
    // merge sbfx and sign-extension into sbfx.
    func sbfx10(x int32) int64 {
    	c := x + 5
    	return int64(c >> 20) // arm64"SBFX\t[$]20, R[0-9]+, [$]12",-"MOVW\tR[0-9]+, R[0-9]+"
    }
    
    // ubfiz
    // merge shifts into ubfiz: (x<<lc)>>rc && lc>rc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			if errMerge != nil {
    				return false, fmt.Errorf("function mergeAnyWithAny failed for doFilterChainOperation: %v", errMerge)
    			}
    
    			// Merge the above result with the whole listener
    			merge.Merge(dstListener, retVal)
    		}
    	}
    	// If we already applied the patch, we skip merge.Merge() in the outer function
    	return applyPatch, nil
    }
    
    func patchNetworkFilters(patchContext networking.EnvoyFilter_PatchContext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

                locations.putAll(sourceDominant ? sourceLocations : targetLocations);
            }
    
            return new InputLocation(-1, -1, InputSource.merge(source.getSource(), target.getSource()), locations);
        } // -- InputLocation merge( InputLocation, InputLocation, boolean )
    
        /**
         * Merges the {@code source} location into the {@code target} location.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/building/FileToRawModelMergerTest.java

        /**
         * Ensures that all list-merge methods are overridden
         */
        @Test
        void testOverriddenMergeMethods() {
            List<String> methodNames = Stream.of(MavenMerger.class.getDeclaredMethods())
                    .filter(m -> m.getName().startsWith("merge"))
                    .filter(m -> {
                        String baseName = m.getName().substring(5 /* merge */);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/vm_test.go

    			Namespace:        "namespace",
    		},
    		Spec: &v1alpha3.WorkloadGroup{
    			Template: &v1alpha3.WorkloadEntry{
    				Labels: map[string]string{
    					"merge": "wg",
    					"wg":    "1",
    				},
    			},
    		},
    		Status: nil,
    	})
    	proxy := &model.Proxy{
    		Labels:      map[string]string{"merge": "me"},
    		IPAddresses: []string{"1.1.1.1"},
    		Metadata: &model.NodeMetadata{
    			AutoRegisterGroup: "wg",
    			Namespace:         "namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top