Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for accidentally (0.32 sec)

  1. tests/integration/ambient/baseline_test.go

    			overrideCheck := func(_ echo.Instance, dst echo.Instance, opt *echo.CallOptions) {
    				if !dst.Config().HasProxyCapabilities() {
    					// No destination means no RBAC to apply. Make sure we do not accidentally reject
    					opt.Check = check.OK()
    				}
    				if !src.Config().HasProxyCapabilities() && dst.Config().HasProxyCapabilities() {
    					// Expect deny if the dest is in the mesh (enforcing policy) but src is not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

      template <typename PredicateT, typename... Args>
      std::unique_ptr<Predicate> Make(Args&&... args) {
        // If we ever expose the Predicate class outside this .cc file then we may
        // want to make this hard to misuse (by accidentally passing in an arbitrary
        // integer to the Predicate constructor for instance).
        return std::unique_ptr<PredicateT>(
            new PredicateT(id_counter_++, std::forward<Args>(args)...));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/net/http/request.go

    // non-nil error of type [*MaxBytesError] for a Read beyond the limit,
    // and closes the underlying reader when its Close method is called.
    //
    // MaxBytesReader prevents clients from accidentally or maliciously
    // sending a large request and wasting server resources. If possible,
    // it tells the [ResponseWriter] to close the connection after the limit
    // has been reached.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    // scan work.
    //
    // gcDrain will always return if there is a pending STW or forEachP.
    //
    // Disabling write barriers is necessary to ensure that after we've
    // confirmed that we've drained gcw, that we don't accidentally end
    // up flipping that condition by immediately adding work in the form
    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    		}
    		if bytes.Contains(slurp, funcBenchmark) {
    			return true
    		}
    	}
    	return false
    }
    
    // makeGOROOTUnwritable makes all $GOROOT files & directories non-writable to
    // check that no tests accidentally write to $GOROOT.
    func (t *tester) makeGOROOTUnwritable() (undo func()) {
    	dir := os.Getenv("GOROOT")
    	if dir == "" {
    		panic("GOROOT not set")
    	}
    
    	type pathMode struct {
    		path string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    	}
    	return images
    }
    
    func makeExpectedImageList(imageList []kubecontainer.Image, maxImages, maxNames int32) []v1.ContainerImage {
    	// copy the imageList, we do not want to mutate it in-place and accidentally edit a test case
    	images := make([]kubecontainer.Image, len(imageList))
    	copy(images, imageList)
    	// sort images by size
    	sort.Sort(sliceutils.ByImageSize(images))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    		backURL, _ := url.Parse(backend.URL)
    		rp := NewSingleHostReverseProxy(backURL)
    		r := req(t, "GET / HTTP/1.0\r\n\r\n")
    		r.Body = nil // this accidentally worked in Go 1.4 and below, so keep it working
    		rp.ServeHTTP(w, r)
    	}))
    	defer frontend.Close()
    
    	res, err := http.Get(frontend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        causing some `Authenticator` calls to see a null route when non-null was expected.
    
     *  Fix: Use the correct key size in the name of `TLS_AES_128_CCM_8_SHA256` which is a TLS 1.3
        cipher suite. We accidentally specified a key size of 256, preventing that cipher suite from
        being selected for any TLS handshakes. We didn't notice because this cipher suite isn't
        supported on Android, Java, or Conscrypt.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    2. you might want to add generated checksums to the list above
    3. when _updating_ dependency verification file with more secure checksums, you don't want to accidentally erase checksums
    
    [[sec:signature-verification]]
    == Verifying dependency signatures
    
    In addition to <<sec:checksum-verification,checksums>>, Gradle supports verification of signatures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    
    === Potential breaking changes
    
     * Build will now fail if a specified init script is not found.
     * `TaskContainer.remove()` now actually removes the given task — some plugins may have accidentally relied on the old behavior.
     * <<#rel4.8:pom_wildcard_exclusions,Gradle now honors implicit wildcards in Maven POM exclusions>>.
     * The Kotlin DSL now respects JSR-305 package annotations.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top