Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 493 for scalar2 (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    include::sample[dir="snippets/scala/quickstart/kotlin",files="build.gradle.kts[tags=scala-dependency]"]
    include::sample[dir="snippets/scala/quickstart/groovy",files="build.gradle[tags=scala-dependency]"]
    ====
    
    If you want to use Scala 3 instead of the `scala-library` dependency you should add the `scala3-library_3` dependency:
    
    .Declaring a Scala 3 dependency for production code
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.language.scala.tasks.AbstractScalaCompile.xml

      -->
    
    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>scala</literal> plugin <overrides>Default with <literal>java</literal> plugin</overrides></td>
                    </tr>
                </thead>
                <tr>
                    <td>options</td>
                    <td/>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    		case int64:
    			fmt.Fprintf(&delimited, keyDelimiter+"%d", v)
    		case string:
    			fmt.Fprintf(&delimited, keyDelimiter+"%q", v)
    		default:
    			return nil, false // values must be scalars
    		}
    	}
    	return delimited.String(), true
    }
    
    // emptyMapList is a MapList containing no elements.
    type emptyMapList struct{}
    
    func (emptyMapList) Get(interface{}) interface{} {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function_test.cc

      Run({{func_feed, Int32Tensor(3)}}, func_op, 2 + 3);
      VerifyFDef(
          {"add_0", "scalar"}, M({{"feed1"}, {"feed2"}}), M({{"add"}}),
          {{"feed1", "add_0:0"}, {"feed2", "add_0:1"}, {"add_0:sum:0", "add"}},
          {{"^scalar", "add_0:2"}});
    }
    
    TEST_F(CApiFunctionTest, ControlDependencyOutsideOfBody) {
      /*
       *                  |  |    scalar
       *                  |  |    .
       *                  v  v   . <---- control dependency
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		},
    		"removed only": {
    			Original: `{"name":"foo","scalar":true,"complex":{"nested":true}}`,
    			Current:  `{"name":"foo","scalar":true,"complex":{"nested":true},"array":[1,2,3]}`,
    			Modified: `{"name":"foo"}`,
    
    			ExpectedTwoWay:         `{"complex":null,"scalar":null}`,
    			ExpectedTwoWayResult:   `{"name":"foo"}`,
    			ExpectedThreeWay:       `{"complex":null,"scalar":null}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation.go

    		}
    	}
    
    	return errs
    }
    
    // validateListSet validated uniqueness of unstructured objects (scalar and compound) and
    // returns the first non-unique appearance of items.
    //
    // As a special case to distinguish undefined key and null values, we allow unspecifiedKeyValue and nullObjectValue
    // which are both handled like scalars with correct comparison by Golang.
    func validateListSet(fldPath *field.Path, obj []interface{}) ([]int, *field.Error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 02:47:24 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar_test.go

    	}
    	return cfg
    }
    
    var scOneBytes = [32]byte{1}
    var scOne, _ = new(Scalar).SetCanonicalBytes(scOneBytes[:])
    var scMinusOne, _ = new(Scalar).SetCanonicalBytes(scalarMinusOneBytes[:])
    
    // Generate returns a valid (reduced modulo l) Scalar with a distribution
    // weighted towards high, low, and edge values.
    func (Scalar) Generate(rand *mathrand.Rand, size int) reflect.Value {
    	var s [32]byte
    	diceRoll := rand.Intn(100)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/scalar_alias_test.go

    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    				return v.MultiplyAdd(&fixed, x, y)
    			}, v, x, y)
    		},
    		"MultiplyAdd2": func(v, x, y, fixed Scalar) bool {
    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    				return v.MultiplyAdd(x, &fixed, y)
    			}, v, x, y)
    		},
    		"MultiplyAdd3": func(v, x, y, fixed Scalar) bool {
    			return checkAliasingTwoArgs(func(v, x, y *Scalar) *Scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/internal/gcprog/gcprog.go

    // that is, it records that the index'th word in the object memory is a pointer.
    // Any bits between the current index and the new index
    // are set to zero, meaning the corresponding words are scalars.
    func (w *Writer) Ptr(index int64) {
    	if index < w.index {
    		println("gcprog: Ptr at index", index, "but current index is", w.index)
    		panic("gcprog: invalid Ptr index")
    	}
    	w.ZeroUntil(index)
    	if w.debug != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/runtime/metrics.go

    // metricValue is a runtime copy of runtime/metrics.Sample and
    // must be kept structurally identical to that type.
    type metricValue struct {
    	kind    metricKind
    	scalar  uint64         // contains scalar values for scalar Kinds.
    	pointer unsafe.Pointer // contains non-scalar values.
    }
    
    // float64HistOrInit tries to pull out an existing float64Histogram
    // from the value, but if none exists, then it allocates one with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top