Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,226 for patching (0.14 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      repeated PartialObjectMetadata items = 2;
    }
    
    // Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
    message Patch {
    }
    
    // PatchOptions may be provided when patching an API object.
    // PatchOptions is meant to be a superset of UpdateOptions.
    message PatchOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      repeated PartialObjectMetadata items = 2;
    }
    
    // Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
    message Patch {
    }
    
    // PatchOptions may be provided when patching an API object.
    // PatchOptions is meant to be a superset of UpdateOptions.
    message PatchOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. docs/features/caching.md

    Caching
    =======
    
    OkHttp implements an optional, off by default, Cache. OkHttp aims for RFC correct and
    pragmatic caching behaviour, following common real-world browser like Firefox/Chrome and 
    server behaviour when ambiguous.
    
    # Basic Usage
    
    ```kotlin
      private val client: OkHttpClient = OkHttpClient.Builder()
          .cache(Cache(
              directory = File(application.cacheDir, "http_cache"),
              // $0.05 worth of phone storage in 2020
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top