Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,077 for patching (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	// It indicates that all fields needing to be preserved must be
    	// present in the `retainKeys` list.
    	// And the fields that are present will be merged with live object.
    	// All the missing fields will be cleared when patching.
    	BuildRetainKeysDirective bool
    }
    
    type MergeOptions struct {
    	// MergeParallelList indicates if we are merging the parallel list.
    	// We don't merge parallel list when calling mergeMap() in CreateThreeWayMergePatch()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    // +k8s:conversion-gen:explicit-from=net/url.Values
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PatchOptions may be provided when patching an API object.
    // PatchOptions is meant to be a superset of UpdateOptions.
    type PatchOptions struct {
    	TypeMeta `json:",inline"`
    
    	// When present, indicates that modifications should not be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle-caching.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 26 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle-caching.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    Sometimes, creating an input directory that was previously missing does not trigger a build, due to the way file system watching works.
    For example, creating the `src/main/java` directory may not trigger a build.
    Similarly, if the input is a <<working_with_files.adoc#filtering_files,filtered file tree>> and no files are matching the filter, the creation of matching files may not trigger a build.
    
    [[sec:continuous_build_untracked]]
    === Inputs of untracked tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_issue61415.txt

    go list -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@latest
    cp stdout no-nested.json
    stdout '"Err": "module vcs-test.golang.org/git/issue61415.git/nested: no matching versions for query \\"latest\\""'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    stdout '"Subdir": "nested"'
    stdout '"TagPrefix": "nested/"'
    stdout '"TagSum": "t1:47DEQpj8HBSa\+/TImW\+5JCeuQeRkm5NMpJWZG3hSuFU="'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-spi/src/main/java/org/gradle/caching/BuildCacheService.java

     *     Non-fatal failures could include failing to retrieve a cache entry or unsuccessfully completing an upload a new cache entry.
     *     Gradle will not fail the build when catching a {@code BuildCacheException}, but it may disable caching for the build if too
     *     many failures occur.
     * </p>
     * <p>
     *     All other failures will be considered fatal and cause the Gradle build to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

         * by this method may not be suitable for selection via attribute matching.</p>
         */
        void visitConsumableConfigurations(Consumer<LocalConfigurationGraphResolveMetadata> visitor);
    
        /**
         * Invalidates any caching used for producing configuration metadata.
         */
        void invalidate();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    # (instead of spending the time to check O(N) previous tags).
    
    ! go list -m github.com/russross/blackfriday@v2.0
    stderr '^go: module github.com/russross/blackfriday: no matching versions for query "v2\.0\"'
    
    # (But asking for exactly v2.0.0+incompatible should still succeed.)
    go list -m github.com/russross/blackfriday@v2.0.0+incompatible
    stdout '^github.com/russross/blackfriday v2\.0\.0\+incompatible$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            and:
            mavenHttpRepo.getModuleMetaData("org.test", "projectA").expectGet()
            matchingA.pom.expectGet()
            matchingA.artifact.expectGet()
    
            mavenHttpRepo.getModuleMetaData("org.test", "projectB").expectGet()
            matchingB.metaData.expectGet()
            matchingB.pom.expectGet()
            matchingB.artifact.expectGet()
    
            and:
            run 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top