Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,082 for patching (0.39 sec)

  1. operator/pkg/metrics/monitoring.go

    		"reconcile_request_total",
    		"Number of times requesting Reconcile",
    	)
    
    	// GetCRErrorTotal counts the number of times fetching
    	// CR fails from API server.
    	GetCRErrorTotal = monitoring.NewSum(
    		"get_cr_error_total",
    		"Number of times fetching CR from apiserver failed",
    	)
    
    	// CRMergeFailureTotal counts number of CR merge failures.
    	CRMergeFailureTotal = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    cmp go.mod.orig go.mod
    
    # get -u=patch, with no arguments, should patch-update all dependencies
    # of the package in the current directory, pulling in transitive dependencies
    # and also patching those.
    cp go.mod.orig go.mod
    go get -u=patch
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    stdout '^patch.example.com/depofdirectpatch v1.0.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/libfuzzer_amd64.s

    // from the same native function, this builtin would always return the same
    // value. Internally, the libFuzzer hooks call through to the always inlined
    // HandleCmp and thus can't be mimicked without patching libFuzzer.
    //
    // We solve this problem via an inline assembly trampoline construction that
    // translates a runtime argument `fake_pc` in the range [0, 512) into a call to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. operator/pkg/patch/patch.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    /*
    Package patch implements a simple patching mechanism for k8s resources.
    Paths are specified in the form a.b.c.[key:value].d.[list_entry_value], where:
      - [key:value] selects a list entry in list c which contains an entry with key:value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. integration-tests/gradle/gradlew

    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. gradlew

    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/limit_test.go

    			Body(jsonBody).
    			DoRaw(context.TODO())
    		if !apierrors.IsBadRequest(err) {
    			t.Errorf("expected bad request, got %v", err)
    		}
    	})
    
    	// Create instance to allow patching
    	{
    		jsonBody := []byte(fmt.Sprintf(`{"apiVersion": %q, "kind": %q, "metadata": {"name": "test"}}`, apiVersion, kind))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. gradlew

    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    			if name == matchedName {
    				return true, matchResource, matchKind, nil
    			}
    		}
    	}
    
    	// if match policy is undefined or exact, don't perform fuzzy matching
    	// note that defaulting to fuzzy matching is set by the API
    	if matchPolicy == nil || *matchPolicy == v1.Exact {
    		return false, schema.GroupVersionResource{}, schema.GroupVersionKind{}, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. 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)
Back to top