Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for accidentally (0.38 sec)

  1. releasenotes/notes/ns-filter.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 186 bytes
    - Viewed (0)
  2. samples/builder/README.md

    You will also want to update the sample YAMLs
    
    ## Building official images
    
    Set `HUB=docker.io/istio` for official image builds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  3. src/unique/clone.go

    	"internal/stringslite"
    	"unsafe"
    )
    
    // clone makes a copy of value, and may update string values found in value
    // with a cloned version of those strings. The purpose of explicitly cloning
    // strings is to avoid accidentally giving a large string a long lifetime.
    //
    // Note that this will clone strings in structs and arrays found in value,
    // and will clone value if it itself is a string. It will not, however, clone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/apis.go

    			continue
    		}
    
    		// Remove resources that serving kinds that are removed.
    		// We do this here so that we don't accidentally serve versions without resources or openapi information that for kinds we don't serve.
    		// This is a spot above the construction of individual storage handlers so that no sig accidentally forgets to check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. ci/official/envs/ci_default

    # Note: this file gets sourced in utilities/setup.sh, which has "set -u"
    # (error on undefined variables). This ensures that (a) every TFCI variable
    # has an explicit default value, and (b) no script can accidentally use a
    # variable that doesn't exist. Please keep this list in alphabetical order.
    #
    # Find usage in scripts with e.g.:
    #   cd ci/official
    #   ls *.sh utilities/*.sh | xargs grep -H --color=always TFCI_ARG_HERE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	_, exists := s.postStartHooks[name]
    	return exists
    }
    
    func runPostStartHook(name string, entry postStartHookEntry, context PostStartHookContext) {
    	var err error
    	func() {
    		// don't let the hook *accidentally* panic and kill the server
    		defer utilruntime.HandleCrash()
    		err = entry.hook(context)
    	}()
    	// if the hook intentionally wants to kill server, let it.
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

                        def nonLauncherOrCoreClass = "org.gradle.api.reporting.Report"
    
                        // Check that this is a dependency (to verify that the class is not accidentally removed and so make the test verify nothing)
                        assert Class.forName(nonLauncherOrCoreClass) != null
    
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // Regression test for an issue found in development.
    //
    // The core of the issue is that if generation counters
    // aren't considered as part of sequence numbers, then
    // it's possible to accidentally advance without a
    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

      auto result_type =
          mlir::cast<ShapedType>(arithmetic_op.getResult().getType());
    
      // We can fold arithmetic operation only of we can prove that we will not
      // accidentally hide a broadcasting error.
      auto is_valid_broadcasting = [](ShapedType operand_ty, ShapedType identity_ty,
                                      ShapedType result_ty) -> bool {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. tests/integration/tests.mk

    endef
    
    # Ensure that all test files are tagged properly. This ensures that we don't accidentally skip tests
    # and that integration tests are not run as part of the unit test suite.
    check-go-tag:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top