Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for rerun (0.16 sec)

  1. src/cmd/go/internal/work/buildid.go

    	// much larger, so the cache-footprint-to-utility ratio
    	// of binaries is much lower for binaries.
    	// Not caching the link step also makes sure that repeated "go run" at least
    	// always rerun the linker, so that they don't get too fast.
    	// (We don't want people thinking go is a scripting language.)
    	// Note also that if we start caching binaries, then we will
    	// copy the binaries out of the cache to run them, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        def "incremental transform is rerun when output is #action between builds"() {
            given:
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform(incremental: true) << withClassesSizeTransform()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    // The correct fix is to use the ConfigProto to pass in some sort of flag into
    // the PartitionedCall kernel that tells it to not rerun auto-clustering on the
    // cluster.
    const char* kXlaAlreadyClustered = "_XlaAlreadyClustered";
    
    class MarkForCompilationPassImpl {
     public:
      struct DebugOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// pod has reached a terminal state and the presence of the error indicates succeeded or failed.
    	// If an error is returned, the sync was not successful and should be rerun in the future. This
    	// is a long running method and should exit early with context.Canceled if the context is canceled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	if strings.Contains(stderr, "unrecognized command line option") {
    		// We're using an old version of GCC that doesn't understand
    		// -fdiagnostics-color. Those versions can't print color anyway,
    		// so just rerun without that option.
    		stderr = p.gccErrors(b.Bytes())
    	}
    	if stderr == "" {
    		fatalf("%s produced no output\non input:\n%s", gccBaseCmd[0], b.Bytes())
    	}
    
    	completed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. docs/yo/docs/index.md

    ---
    
    "_Ti o ba n wa láti kọ ọkan **ìlànà igbalode** fún kikọ àwọn REST API, ṣayẹwo **FastAPI** [...] Ó yára, ó rọrùn láti lò, ó sì rọrùn láti kọ́[...]_"
    
    "_A ti yipada si **FastAPI** fún **APIs** wa [...] Mo lérò pé wà á fẹ́ràn rẹ̀ [...]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    	rtf := netpollReadDeadline
    	if combo {
    		rtf = netpollDeadline
    	}
    	if !pd.rrun {
    		if pd.rd > 0 {
    			// Copy current seq into the timer arg.
    			// Timer func will check the seq against current descriptor seq,
    			// if they differ the descriptor was reused or timers were reset.
    			pd.rt.modify(pd.rd, 0, rtf, pd.makeArg(), pd.rseq)
    			pd.rrun = true
    		}
    	} else if pd.rd != rd0 || combo != combo0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/device_target.h

                                   const KernelSpecs::Signature& signature,
                                   const ScaleConstraintType constraint);
    
      // Adds the kernel with the name. Retrun an existing one if it has been
      // added before.
      KernelSpecs& RegisterKernel(llvm::StringRef kernel) { return specs_[kernel]; }
    
      // For "mulmat->add" type of kernels, convert the scales of all the ports to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pkg/kube/krt/collection.go

    func (h *manyCollection[I, O]) augment(a any) any {
    	if h.augmentation != nil {
    		return h.augmentation(a)
    	}
    	return a
    }
    
    // onPrimaryInputEvent takes a list of I's that changed and reruns the handler over them.
    // This is called either when I directly changes, or if a secondary dependency changed. In this case, we compute which I's depended
    // on the secondary dependency, and call onPrimaryInputEvent with them
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pkg/kubelet/logs/container_log_manager_test.go

    	require.NoError(t, c.rotateLogs(ctx))
    
    	// Start a routine that can monitor the queue and shutdown the queue to trigger the retrun from the processQueueItems
    	// Keeping the monitor duration smaller in order to keep the unwanted delay in the test to a minimal.
    	go func() {
    		pollTimeoutCtx, cancel := context.WithTimeout(ctx, 10*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top