Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,382 for _after (0.11 sec)

  1. src/math/big/calibrate_test.go

    			th2 = th
    			fmt.Print("  diminishing return")
    		}
    		deltaOld = delta
    
    		fmt.Println()
    
    		// trigger counter
    		if th1 >= 0 && th2 >= 0 && count < 0 {
    			count = 10 // this many extra measurements after we got both thresholds
    		}
    
    		th++
    	}
    }
    
    func measureSqr(words, nruns int, mode string) time.Duration {
    	// more runs for better statistics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. test/copy.go

    			return
    		}
    	}
    	// copied part
    	for ; i < out+n; i++ {
    		if output8[i] != u8(i+in-out) {
    			bad8("copied8", i, length, in, out)
    			return
    		}
    	}
    	// after
    	for ; i < len(output8); i++ {
    		if output8[i] != u8(i+13) {
    			bad8("after8", i, length, in, out)
    			return
    		}
    	}
    }
    
    func badS(state string, i, length, in, out int) {
    	fmt.Printf("%s bad(%d %d %d): %c not %c:\n\t%s\n\t%s\n",
    		state,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  3. cmd/metacache-entries.go

    			fiv, err := entry.fileInfoVersions(bucket)
    			if err != nil {
    				continue
    			}
    
    			fiVersions := fiv.Versions
    			if afterV != "" {
    				vidMarkerIdx := fiv.findVersionIndex(afterV)
    				if vidMarkerIdx >= 0 {
    					fiVersions = fiVersions[vidMarkerIdx+1:]
    				}
    				afterV = ""
    			}
    
    			for _, version := range fiVersions {
    				versioned := vcfg != nil && vcfg.Versioned(entry.name)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractHeadTailOutsideCompilationPass();
    
    // Creates a pass that extract outside compilation (Host ops inside cevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/antbuilder/AntBuilderMemoryLeakTest.groovy

            given:
            def builder = new DefaultIsolatedAntBuilder(registry, classLoaderFactory)
            Class[] classes = new Class[1]
    
            when:
            int i = 0
            // time out after 10 minutes
            CountdownTimer timer = Time.startCountdownTimer(10, TimeUnit.MINUTES)
            try {
                while (!timer.hasExpired()) {
                    builder.withClasspath([new File("foo$i")]).execute {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 26 09:30:27 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Hasher.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link PrimitiveSink} that can compute a hash code after reading the input. Each hasher should
     * translate all multibyte values ({@link #putInt(int)}, {@link #putLong(long)}, etc) to bytes in
     * little-endian order.
     *
     * <p><b>Warning:</b> The result of calling any methods after calling {@link #hash} is undefined.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/math/big/sqrt.go

    		z.form = x.form
    		z.neg = x.neg // IEEE754-2008 requires √±0 = ±0
    		return z
    	}
    
    	// MantExp sets the argument's precision to the receiver's, and
    	// when z.prec > x.prec this will lower z.prec. Restore it after
    	// the MantExp call.
    	prec := z.prec
    	b := x.MantExp(z)
    	z.prec = prec
    
    	// Compute √(z·2**b) as
    	//   √( z)·2**(½b)     if b is even
    	//   √(2z)·2**(⌊½b⌋)   if b > 0 is odd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/custom-response.md

    ```
    
    1. This is the generator function. It's a "generator function" because it contains `yield` statements inside.
    2. By using a `with` block, we make sure that the file-like object is closed after the generator function is done. So, after it finishes sending the response.
    3. This `yield from` tells the function to iterate over that thing named `file_like`. And then, for each part iterated, yield that part as coming from this generator function.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle clean build
    ----
    
    However, the intention implied in the command line order is that `clean` should run first and then `build`. It would be incorrect to execute `clean` _after_ `build`, even if doing so would cause the build to execute faster since `clean` would remove what `build` created.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/fix/fix.go

    		walkBeforeAfter(&n.Post, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    	case *ast.RangeStmt:
    		walkBeforeAfter(&n.Key, before, after)
    		walkBeforeAfter(&n.Value, before, after)
    		walkBeforeAfter(&n.X, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    
    	case *ast.ImportSpec:
    	case *ast.ValueSpec:
    		walkBeforeAfter(&n.Type, before, after)
    		walkBeforeAfter(&n.Values, before, after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
Back to top