Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Scalar (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    					if s.Type == "array" || s.Type == "object" {
    						allErrs.SchemaErrors = append(allErrs.SchemaErrors, field.Invalid(fldPath.Child("items").Child("properties").Key(k).Child("type"), schema.Items.Schema.Type, "must be a scalar type if parent array's x-kubernetes-list-type is map"))
    					}
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

               (TFL_L2NormalizationOp $x, TFL_AF_None),
               [(L2NormValidReduceIndex $sq_op, $axis)]>;
    
      // Below patterns for L2Normalize when there is an Add or Maximum
      // adding or clamping to a small constant scalar.
      def L2NormalizePattern2#FirstOp#SecondOp : Pat<
                        (FirstOp $x,
                         (SecondOp
                          (TFL_AddOp
                           (TFL_SumOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	if got != expect {
    		t.Errorf("expected:\n\t%q\ngot:\n\t%q", expect, got)
    	}
    }
    
    var formatterFlagTests = []struct {
    	in  string
    	val any
    	out string
    }{
    	// scalar values with the (unused by fmt) 'a' verb.
    	{"%a", flagPrinter{}, "[%a]"},
    	{"%-a", flagPrinter{}, "[%-a]"},
    	{"%+a", flagPrinter{}, "[%+a]"},
    	{"%#a", flagPrinter{}, "[%#a]"},
    	{"% a", flagPrinter{}, "[% a]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // instead relying on default initialization for the unspecified fields. In
    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    // The flag -Wmissing-field-initializers must not be specified for this to work.
    # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
        ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. src/reflect/type.go

    		Typ:    field.Type.common(),
    		Offset: 0,
    	}
    	return f, field.PkgPath
    }
    
    // typeptrdata returns the length in bytes of the prefix of t
    // containing pointer data. Anything after this offset is scalar data.
    // keep in sync with ../cmd/compile/internal/reflectdata/reflect.go
    func typeptrdata(t *abi.Type) uintptr {
    	switch t.Kind() {
    	case abi.Struct:
    		st := (*structType)(unsafe.Pointer(t))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    					"process-services",
    					"build-configuration",
    					"base-services"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"scala",
    					"plugins-java-base",
    					"build-cache",
    					"messaging",
    					"war",
    					"java-platform",
    					"build-profile",
    					"resources-gcs",
    					"ear",
    					"plugins-distribution",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.scala.ScalaCompile.getScalaCompileOptions()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ScalaCompile.java:0)
    Method <org.gradle.api.tasks.scala.ScalaCompile.getScalaCompileOptions()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ScalaCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    			loi.NextMarker = opts.encodeMarker(loi.NextMarker)
    		}
    		return loi, nil
    	}
    	ri := logger.GetReqInfo(ctx)
    	hadoop := ri != nil && strings.Contains(ri.UserAgent, "Hadoop ") && strings.Contains(ri.UserAgent, "scala/")
    	matches := func() bool {
    		if prefix == "" {
    			return false
    		}
    		// List of standard files supported by s3a
    		// that involves a List() on a directory
    		// where directory is actually an object on
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top