Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 338 for happen (0.25 sec)

  1. src/time/time_test.go

    		for i := 0; i < int(b); i++ {
    			d *= 5
    		}
    
    		// Make room for unix ↔ internal conversion.
    		// We don't care about behavior too close to ± 2^63 Unix seconds.
    		// It is full of wraparounds but will never happen in a reasonable program.
    		// (Or maybe not? See go.dev/issue/20678. In any event, they're not handled today.)
    		ti >>= 1
    
    		return testOne(ti, int64(tns), int64(d))
    	}
    	quick.Check(f1, cfg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <5> Uses an accessor to configure the `test` task
    
    [TIP]
    ====
    Your IDE knows about the type-safe accessors, so it will include them in its suggestions.
    
    This will happen both at the top level of your build scripts — most plugin extensions are added to the `Project` object — and within the blocks that configure an extension.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_test.cc

          // and hence expect the input to be forwarded to the return tensor.
          EXPECT_EQ(orig_ptr, TF_TensorData(t));
        } else {
          // In sync mode, forwarding can't really happen since the client code will
          // have a reference count on the input tensor while the kernel is being
          // executed and thus it cannot be re-used for the return tensor.
          EXPECT_NE(orig_ptr, TF_TensorData(t));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124503](https://github.com/kubernetes/kubernetes/pull/124503), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	}
    	err := Remove(f)
    	if err != nil {
    		t.Fatalf("Remove: %v", err)
    	}
    	s = writeFile(t, f, O_CREATE|O_APPEND|O_RDWR, "new&append")
    	if s != "new&append" {
    		t.Fatalf("writeFile: after append have %q want %q", s, "new&append")
    	}
    	s = writeFile(t, f, O_CREATE|O_RDWR, "old")
    	if s != "old&append" {
    		t.Fatalf("writeFile: after create have %q want %q", s, "old&append")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    However, certain inputs are not tracked yet, so you may have to manually invalidate the configuration cache when untracked inputs to the configuration phase change.
    This can happen if you <<configuration_cache#config_cache:usage:ignore_problems,ignored problems>>.
    See the <<configuration_cache#config_cache:requirements>> and <<configuration_cache#config_cache:not_yet_implemented>> sections below for more information.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    			options.KillPodOptions = &KillPodOptions{}
    		}
    
    		if ch := options.KillPodOptions.CompletedCh; ch != nil {
    			status.notifyPostTerminating = append(status.notifyPostTerminating, ch)
    		}
    		if fn := options.KillPodOptions.PodStatusFunc; fn != nil {
    			status.statusPostTerminating = append(status.statusPostTerminating, fn)
    		}
    
    		gracePeriod, gracePeriodShortened := calculateEffectiveGracePeriod(status, pod, options.KillPodOptions)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    			insLUI := &instruction{as: ALUI, rd: ins.rd, imm: high}
    			inss = []*instruction{insLUI}
    			if low != 0 {
    				ins.as, ins.rs1 = AADDIW, ins.rd
    				inss = append(inss, ins)
    			}
    		}
    		if insSLLI != nil {
    			inss = append(inss, insSLLI)
    		}
    
    	case p.From.Type == obj.TYPE_CONST && p.To.Type != obj.TYPE_REG:
    		p.Ctxt.Diag("%v: constant load must target register", p)
    		return nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    	op = p
    	p = p.Link
    	var m int
    	var o *Optab
    	for ; p != nil || c.blitrl != nil; op, p = p, p.Link {
    		if p == nil {
    			if c.checkpool(op, pc) {
    				p = op
    				continue
    			}
    
    			// can't happen: blitrl is not nil, but checkpool didn't flushpool
    			ctxt.Diag("internal inconsistency")
    
    			break
    		}
    
    		p.Pc = int64(pc)
    		o = c.oplook(p)
    		m = int(o.size)
    
    		if m%4 != 0 || p.Pc%4 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    attributes. This ensures the unified attributes do not get exposed outside
    of the MLIR bridge with V1 pipeline in some cases. The pass expects to have
    either none or both of the unified attributes present in an op for the
    conversion to happen. Otherwise it will fail.
    
    For example, `_replication_info="cluster"` and
    `_xla_compile_device_type="TPU"` in the following code
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top