Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for accidentally (0.2 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

        begin a graceful deletion and wait until the resource is fully deleted.  To force
        deletion immediately, use the `--force` flag. This prevents users from accidentally
        allowing two Stateful Set pods to share the same persistent volume which could lead to data
        corruption [#37263](https://github.com/kubernetes/kubernetes/pull/37263)
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (1)
  2. src/cmd/link/internal/ld/data.go

    		return
    	}
    
    	ldr := ctxt.loader
    	s := ldr.CreateSymForUpdate("go:buildid", 0)
    	// The \xff is invalid UTF-8, meant to make it less likely
    	// to find one of these accidentally.
    	data := "\xff Go build ID: " + strconv.Quote(*flagBuildid) + "\n \xff"
    	s.SetType(sym.STEXT)
    	s.SetData([]byte(data))
    	s.SetSize(int64(len(data)))
    
    	ctxt.Textp = append(ctxt.Textp, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. pkg/kubelet/kubelet.go

    	if pod == nil {
    		return fmt.Errorf("deletePod does not allow nil pod")
    	}
    	if !kl.sourcesReady.AllReady() {
    		// If the sources aren't ready, skip deletion, as we may accidentally delete pods
    		// for sources that haven't reported yet.
    		return fmt.Errorf("skipping delete because sources aren't ready yet")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  4. pilot/pkg/networking/core/cluster_test.go

    	// For 9090, use the TLS settings are explicitly specified in DR (which disable TLS)
    	g.Expect(getTLSContext(t, clusters[1])).To(BeNil())
    
    	// Sanity check: make sure TLS is not accidentally added to other clusters.
    	for i := 2; i < len(clusters); i++ {
    		cluster := clusters[i]
    		g.Expect(getTLSContext(t, cluster)).To(BeNil())
    	}
    }
    
    func TestApplyLoadBalancer(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // needed.
    //
    // Because coefficient-wise binary operations support implicit broadcasting, we
    // should be very careful with this optimization, and do not accidentally
    // produce incorrect concat operations.
    class HoistCwiseBinaryOutOfConcat : public OpRewritePattern<TF::ConcatV2Op> {
     public:
      explicit HoistCwiseBinaryOutOfConcat(MLIRContext* context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. src/net/http/server.go

    		// send on the CloseNotify channel and cancel the context here,
    		// but the behavior was documented as only "may", and we only
    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    	requested := 0
    	for _, req := range tc.reportedCPURequests {
    		requested += int(req.MilliValue())
    	}
    	tc.CPUCurrent = int32(100 * reported / requested)
    }
    
    func init() {
    	// set this high so we don't accidentally run into it when testing
    	scaleUpLimitFactor = 8
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	defer span.Done()
    
    	if path == "" {
    		panic("loadPackageData called with empty package path")
    	}
    
    	if strings.HasPrefix(path, "mod/") {
    		// Paths beginning with "mod/" might accidentally
    		// look in the module cache directory tree in $GOPATH/pkg/mod/.
    		// This prefix is owned by the Go core for possible use in the
    		// standard library (since it does not begin with a domain name),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Create local vectors for the input and output and sort them to be
      // deterministic. We don't want anyone to really depend on the order, client
      // should lookup argument/result mapping by attribute name.
      // To avoid accidentally depending on the order we use an unintuitive sorting.
      std::vector<std::pair<std::string, TensorInfo>> inputs(
          signature_def.inputs().begin(), signature_def.inputs().end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the edge of her skirt, upsetting all the jurymen on to the heads
    of the crowd below, and there they lay sprawling about, reminding
    her very much of a globe of goldfish she had accidentally upset
    the week before.
    
      `Oh, I BEG your pardon!' she exclaimed in a tone of great
    dismay, and began picking them up again as quickly as she could,
    for the accident of the goldfish kept running in her head, and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top