Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 264 for corerest (0.14 sec)

  1. src/database/sql/convert_test.go

    	case 1, 2:
    		d.form = form
    		d.neg = negative
    		return nil
    	case 0:
    	}
    	d.form = form
    	d.neg = negative
    	d.exponent = exponent
    
    	// This isn't strictly correct, as the extra bytes could be all zero,
    	// ignore this for this test.
    	if len(coefficient) > 16 {
    		return fmt.Errorf("coefficient too large")
    	}
    	copy(d.coefficient[:], coefficient)
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/go/types/typexpr.go

    	// to interface methods. Delay this check to the end of type-checking.
    	check.later(func() {
    		if t, _ := under(typ).(*Interface); t != nil {
    			tset := computeInterfaceTypeSet(check, e.Pos(), t) // TODO(gri) is this the correct position?
    			if !tset.IsMethodSet() {
    				if tset.comparable {
    					check.softErrorf(e, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        }
    
        /**
         * The setter for {@code configFailurePolicy} has a different signature depending on TestNG version.
         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
         * If the TestNG version is greater than or equal to 6.9.12, the provided {@code value} is coerced to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                return new DefaultIsolatedAntBuilder(classPathRegistry, classLoaderFactory, moduleRegistry);
            }
        }
    
        /**
         * This is not correct!
         *
         * These services are normally available in the build session scope, not the project scope.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                super.transformInvocation(invocation);
            } else {
                // Need to move those implicit JVM args that contain a space to the Gradle command-line (if possible)
                // Note that this isn't strictly correct as some system properties can only be set on JVM start up.
                // Should change the implementation to deal with these properly
                for (String jvmArg : invocation.implicitLauncherJvmArgs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typexpr.go

    	check.later(func() {
    		if t, _ := under(typ).(*Interface); t != nil {
    			pos := syntax.StartPos(e)
    			tset := computeInterfaceTypeSet(check, pos, t) // TODO(gri) is this the correct position?
    			if !tset.IsMethodSet() {
    				if tset.comparable {
    					check.softErrorf(pos, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            buildOperations.none(RealizeTaskBuildOperationType, not(withPath(':', ':foo')))
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, subprojects")
        def "registration and realization ops have correct paths"() {
            given:
            def createTasks = {
                buildFile << """
                    apply plugin: 'base'
                    subprojects {
                        apply plugin: 'base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        rewriter.replaceOp(op, tf_op->getResults());
    
        // Special type fixes for TF Resource Tensors that are casted to
        // Int32 tensor during MLIR->TFLite flatbuffer conversion.
        // TODO(b/146131919): correct handling of resource type
        if (auto tensor_array_v3_op = dyn_cast<TF::TensorArrayV3Op>(tf_op)) {
          Value handle = tensor_array_v3_op.getHandle();
          auto handle_type = mlir::cast<TensorType>(handle.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/runtime/race_ppc64le.s

    	MOVD    runtime·tls_g(SB), R10	// find correct g
    	MOVD    0(R10), g
    	MOVD	16(R1), R10		// LR was saved away, restore for return
    	MOVD	R10, LR
    	RET
    
    // C->Go callback thunk that allows to call runtime·racesymbolize from C code.
    // Direct Go->C race call has only switched SP, finish g->g0 switch by setting correct g.
    // The overall effect of Go->C->Go call chain is similar to that of mcall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    		// in the same type declaration; if they are instantiated they
    		// must have identical type argument lists.
    		if y := asNamed(y); y != nil {
    			// check type arguments before origins to match unifier
    			// (for correct source code we need to do all checks so
    			// order doesn't matter)
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top