Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,154 for existingPV (0.36 sec)

  1. pilot/pkg/model/kstatus/helper.go

    	ret := slices.Clone(conditions)
    	existing := slices.FindFunc(ret, func(cond metav1.Condition) bool {
    		return cond.Type == condition.Type
    	})
    	if existing == nil {
    		ret = append(ret, condition)
    		return ret
    	}
    
    	if existing.Status == condition.Status {
    		if existing.Message == condition.Message &&
    			existing.ObservedGeneration == condition.ObservedGeneration {
    			// Skip update, no changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_overlay.txt

    # Test listing with overlays
    
    # Overlay in an existing directory
    go list -overlay overlay.json  -f '{{.GoFiles}}' .
    stdout '^\[f.go\]$'
    
    # Overlays in a non-existing directory
    go list -overlay overlay.json -f '{{.GoFiles}}' ./dir
    stdout '^\[g.go\]$'
    
    # Overlays in an existing directory with already existing files
    go list -overlay overlay.json -f '{{.GoFiles}}' ./dir2
    stdout '^\[h.go i.go\]$'
    
    # Overlay that removes a file from a directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 12 21:13:04 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                        Object key = getPluginKey().apply(element);
                        Plugin existing = master.get(key);
                        if (existing != null) {
                            existing = mergePlugin(existing, element, sourceDominant, context);
                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                        Object key = getPluginKey().apply(element);
                        Plugin existing = master.get(key);
                        if (existing != null) {
                            existing = mergePlugin(existing, element, sourceDominant, context);
                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller_test.go

    		name    string
    		cidrs   []*networkingapiv1alpha1.ServiceCIDR
    		actions [][]string // verb and resource
    	}{
    		{
    			name:    "no existing service CIDRs",
    			actions: [][]string{{"create", "servicecidrs"}, {"patch", "servicecidrs"}},
    		},
    		{
    			name: "existing default service CIDR update Ready condition",
    			cidrs: []*networkingapiv1alpha1.ServiceCIDR{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 14 23:31:58 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/packaging/common/scripts/preinst

        install|upgrade)
    
            # Create fess group if not existing
            if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_GROUP group..."
                addgroup --quiet --system "$FESS_GROUP"
                echo " OK"
            fi
    
            # Create fess user if not existing
            if ! id $FESS_USER > /dev/null 2>&1 ; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

                )
    
                compute(fqn.simpleName) { _, existing ->
                    if (existing != null && existing != fqn) {
                        analysisContext.errorCollector.collect(ResolutionError(import, ErrorReason.AmbiguousImport(fqn)))
                        existing
                    } else {
                        fqn
                    }
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            // need an existing sibling of the symlink to ensure the parent directory of
            // the symlink is watched between builds.
            linkdir.file("existing").createFile()
            buildFile << """
        task echo {
            def symlink = file("${symlink.toURI()}")
            inputs.files symlink
            inputs.files "src/linkdir/existing"
            outputs.file "build/outputs"
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin: true,
    		},
    		{
    			name:              "specified existing CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "list.conflist",
    			expectedConfName:  "list.conflist",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (.conf to .conflist)",
    			chainedCNIPlugin:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePluginExtension.java

        /**
         * This method is only here to maintain compatibility with existing builds.
         *
         * @deprecated Use {@link #getDistsDirectory()}. This method is scheduled for removal in Gradle 9.0.
         */
        @Deprecated
        String getDistsDirName();
    
        /**
         * This method is only here to maintain compatibility with existing builds.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top