Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for verb (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    outputFile = layout.buildDirectory.file("out.txt")
                }
            """
    
            expect:
            fails("broken")
    
            // The failure is currently very specific to the annotation type
            // TODO  - fail earlier and add some expectations here
    
            fails("broken")
    
            where:
            annotationType << [
                Input,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      RewritePatternSet patterns(ctx);
      RewritePatternSet phase_2_patterns(ctx);
      auto func = getOperation();
    
      // Check illegal ops in a TFLite pipeline (e.g. trainning only ops) , since
      // PrepareTFPass is the very first TFLite pass in the pipeline.
      // TODO(jingpu): It might be better to split this check into its own pass
      // to make things more modular.
      if (failed(ValidateOp(func))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This means it was possible for some projects to compile without any declared dependencies even though they referenced Gradle runtime classes.
    We believe this situation is very unlikely to occur in real projects, as IDE integration and test execution would not work correctly.
    If you need to use the Gradle API, declare a `gradleApi` dependency or use the `java-gradle-plugin` plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    func (ctxt *Link) mkArchSym(name string, ver int, ls *loader.Sym) {
    	*ls = ctxt.loader.LookupOrCreateSym(name, ver)
    	ctxt.loader.SetAttrReachable(*ls, true)
    }
    
    // mkArchSymVec is similar to  setArchSyms, but operates on elements within
    // a slice, where each element corresponds to some symbol version.
    func (ctxt *Link) mkArchSymVec(name string, ver int, ls []loader.Sym) {
    	ls[ver] = ctxt.loader.LookupOrCreateSym(name, ver)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(7*1024*1024, -8, DecimalExponent), (7 * 1024 * 1024) / float64(100000000)},
    
    		// very large numbers
    		{Quantity{d: maxAllowed, Format: DecimalSI}, math.MaxInt64},
    		{Quantity{d: maxAllowed, Format: BinarySI}, math.MaxInt64},
    		{decQuantity(12, 18, DecimalSI), 1.2e19},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		oldLambdaTemplateLevel = st.lambdaTemplateLevel
    		st.lambdaTemplateLevel = 0
    	}
    
    	// Checking for the enable_if attribute here is what the LLVM
    	// demangler does.  This is not very general but perhaps it is
    	// sufficient.
    	const enableIfPrefix = "Ua9enable_ifI"
    	var enableIfArgs []AST
    	if strings.HasPrefix(st.str, enableIfPrefix) {
    		st.advance(len(enableIfPrefix) - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Pseudo-ops
    		{name: "LoweredGetG", argLength: 1, reg: gp01}, // arg0=mem
    		// Scheduler ensures LoweredGetClosurePtr occurs only in entry block,
    		// and sorts it to the very beginning of the block to prevent other
    		// use of R12 (the closure pointer)
    		{name: "LoweredGetClosurePtr", reg: regInfo{outputs: []regMask{buildReg("R12")}}, zeroWidth: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto reduce_dim =
            rewriter.create<TF::ConstOp>(loc, GetI64ElementsAttr({-1}, &rewriter));
    
        // Exponential of input values and then their sum can be very large here.
        // Division with large denominator is numerically unstable. To improve
        // numerical stability, subtract each batch with their max element so that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	// run go test directly. Use skips or build tags in preference to expanding
    	// this list.
    	registerStdTestSpecially := map[string]bool{
    		// testdir can run normally as part of "go test std cmd", but because
    		// it's a very large test, we register is specially as several shards to
    		// enable better load balancing on sharded builders. Ideally the build
    		// system would know how to shard any large test package.
    		"cmd/internal/testdir": true,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    					t.Errorf("i = %d, prec = %d, %s:\n\t     %s\n\t/    %s\n\t=    %s\n\twant %s",
    						i, prec, mode, x, y, got, want)
    				}
    			}
    		}
    	}
    }
    
    var long = flag.Bool("long", false, "run very long tests")
    
    // TestFloatQuoSmoke tests all divisions x/y for values x, y in the range [-n, +n];
    // it serves as a smoke test for basic correctness of division.
    func TestFloatQuoSmoke(t *testing.T) {
    	n := 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top