Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 198 for accidentally (0.41 sec)

  1. internal/crypto/error.go

    package crypto
    
    import (
    	"errors"
    	"fmt"
    )
    
    // Error is the generic type for any error happening during decrypting
    // an object. It indicates that the object itself or its metadata was
    // modified accidentally or maliciously.
    type Error struct {
    	msg   string
    	cause error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type crypto.Error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    		return NewEmptyManaged(), nil
    	}
    
    	// If the managed field is empty or we failed to decode it,
    	// let's try the live object. This is to prevent clients who
    	// don't understand managedFields from deleting it accidentally.
    	managed, err := DecodeManagedFields(newAccessor.GetManagedFields())
    	if err != nil || len(managed.Fields()) == 0 {
    		return emptyManagedFieldsOnErr(DecodeManagedFields(liveAccessor.GetManagedFields()))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

     Optional supplemental description.
    ```
    + Make sure you have added the necessary tests (JUnit/[Core IT tests][core-it]) for your changes.
    + Run all the tests with `mvn -Prun-its verify` to assure nothing else was accidentally broken.
    + Submit a pull request to the repository in the Apache organization.
    + Update your JIRA ticket and include a link to the pull request in the ticket.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    name = c
                    rhs = IntLiteral [indexes: 29..30, line/column: 3/9..3/10, file: test] (9)
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
        fun `accidentally concatenated lines in a series of assignments`() {
            val code = """
                val a = 1
                val b = 2 val c = 3
                val d = 4
            """.trimIndent()
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/background-tasks.md

    It is imported/included directly into FastAPI so that you can import it from `fastapi` and avoid accidentally importing the alternative `BackgroundTask` (without the `s` at the end) from `starlette.background`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/reflect/makefunc.go

    // that happens on the return path, whereas this happens on the call path.
    //
    // nosplit because pointers are being held in uintptr slots in args, so
    // having our stack scanned now could lead to accidentally freeing
    // memory.
    //
    //go:nosplit
    func moveMakeFuncArgPtrs(ctxt *makeFuncCtxt, args *abi.RegArgs) {
    	for i, arg := range args.Ints {
    		// Avoid write barriers! Because our write barrier enqueues what
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. cluster/get-kube.sh

      echo "Downloading kubernetes release ${KUBE_VERSION}"
      echo "  from ${kubernetes_tar_url}"
      echo "  to ${PWD}/${file}"
    fi
    
    if [[ -e "${PWD}/kubernetes" ]]; then
      # Let's try not to accidentally nuke something that isn't a kubernetes
      # release dir.
      if [[ ! -f "${PWD}/kubernetes/version" ]]; then
        echo "${PWD}/kubernetes exists but does not look like a Kubernetes release."
        echo "Aborting!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    		// However, you should be able to find the original config file in /etc/kubernetes/tmp/kubeadm-kubelet-configxxx folder.
    		// The test haven't clean up the temporary file created under /etc/kubernetes/tmp/ as that could be accidentally delete other files in
    		// that folder as well which might be unexpected.
    		{
    			name:   "write kubelet config file successfully",
    			dryrun: true,
    			cfg: &kubeadmapi.InitConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    	return func(ctx context.Context, old runtime.Object) error {
    		if !mutating && !validating {
    			return nil
    		}
    		finalAttributes := admission.NewAttributesRecord(
    			nil,
    			// Deep copy the object to avoid accidentally changing the object.
    			old.DeepCopyObject(),
    			staticAttributes.GetKind(),
    			staticAttributes.GetNamespace(),
    			staticAttributes.GetName(),
    			staticAttributes.GetResource(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    [[sec:handling-mutually-exclusive-deps]]
    = Handling mutually exclusive dependencies
    
    [[sub:capabilities]]
    == Introduction to component capabilities
    
    Often a dependency graph would accidentally contain multiple implementations of the same API.
    This is particularly common with logging frameworks, where multiple bindings are available, and that one library chooses a binding when another transitive dependency chooses another.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top