Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,221 for Patches (0.21 sec)

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

    		return emptyManagedFieldsOnErr(DecodeManagedFields(liveAccessor.GetManagedFields()))
    	}
    
    	// If the object doesn't have metadata, we should just return without trying to
    	// set the managedFields at all, so creates/updates/patches will work normally.
    	newAccessor, err := meta.Accessor(newObj)
    	if err != nil {
    		return nil, err
    	}
    
    	if isResetManagedFields(newAccessor.GetManagedFields()) {
    		return NewEmptyManaged(), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. pkg/controller/testutil/test_utils.go

    	return node, nil
    }
    
    // PatchStatus patches a status of a Node in the fake store.
    func (m *FakeNodeHandler) PatchStatus(ctx context.Context, nodeName string, data []byte) (*v1.Node, error) {
    	m.RequestCount++
    	return m.Patch(ctx, nodeName, types.StrategicMergePatchType, data, metav1.PatchOptions{}, "status")
    }
    
    // Watch watches Nodes in a fake store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/init.go

    	}
    	return tokens
    }
    
    // PatchesDir returns the folder where patches for components are stored
    func (d *initData) PatchesDir() string {
    	// If provided, make the flag value override the one in config.
    	if len(d.patchesDir) > 0 {
    		return d.patchesDir
    	}
    	if d.cfg.Patches != nil {
    		return d.cfg.Patches.Directory
    	}
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

        /**
         * Selects the type of path where to place the given dependency.
         * This method returns one of the values specified in the given collection.
         * This method does not handle the patch-module paths, because the patches
         * depend on which modules have been previously added on the module-paths.
         *
         * <p>If the dependency can be a constituent of both the class-path and the module-path,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

                return version.getVersion().matches(".*+\\d{4}");
            }
            if (isSameOrNewer("0.9.2") && isSameOrOlder("1.0-milestone-2")) {
                // These versions couldn't handle milestone patches
                if (version.getVersion().matches("1.0-milestone-\\d+[a-z]-.+")) {
                    return false;
                }
            }
            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

      rpm2cpio "devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-10.2.1-20210130.tar.xz" --strip 1
      ;;
    esac
    
    # Apply the devtoolset patches to gcc.
    /rpm-patch.sh "gcc.spec"
    
    ./contrib/download_prerequisites
    
    mkdir -p "${TARGET}-build"
    cd "${TARGET}-build"
    
    "${TARGET}-src/configure" \
          --prefix="${TARGET}/usr" \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    }
    
    // MergeStrategicMergeMapPatchUsingLookupPatchMeta merges strategic merge
    // patches retaining `null` fields and parallel lists. If 2 patches change the
    // same fields and the latter one will override the former one. If you don't
    // want that happen, you need to run func MergingMapsHaveConflicts before
    // merging these patches. Applying the resulting merged merge patch to a JSONMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. operator/pkg/patch/patch_test.go

    			}
    		})
    	}
    }
    
    func makeOverlayHeader(path, value string) string {
    	const (
    		patchCommon = `overlays:
    - kind: Deployment
      name: istio-citadel
      patches:
      - path: `
    		valueStr = `    value: `
    	)
    
    	ret := patchCommon
    	ret += fmt.Sprintf("%s\n", path)
    	if value != "" {
    		ret += fmt.Sprintf("%s%s\n", valueStr, value)
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  9. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        pilot:
          k8s:
            overlays:
            - kind: Deployment
              name: istio-pilot
              patches:
              - path: spec.template.spec.containers.[name:discovery].args.[30m]
                value: "60m" # OVERRIDDEN
              - path: spec.template.spec.containers.[name:discovery].ports.[containerPort:8080].containerPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. operator/pkg/util/yaml.go

    			return nil, err
    		}
    	}
    
    	out := make(map[string]any)
    	err = yaml.Unmarshal([]byte(by), &out)
    	if err != nil {
    		return nil, err
    	}
    	return out, nil
    }
    
    // OverlayYAML patches the overlay tree over the base tree and returns the result. All trees are expressed as YAML
    // strings.
    func OverlayYAML(base, overlay string) (string, error) {
    	if strings.TrimSpace(base) == "" {
    		return overlay, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top