Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 152 for mytype (0.12 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationCallInterceptionRequestReaderImpl.java

            Type parameterType = extractType(parameterElement.asType());
            ParameterKindInfo parameterKindInfo = extractParameterKind(parameterElement, isVararg);
    
            if (parameterKindInfo == ParameterKindInfo.VARARG_METHOD_PARAMETER) {
                if (parameterType.getSort() != Type.ARRAY) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	}
    
    	found := false
    	returnTypes := expressionAccessor.ReturnTypes()
    	for _, returnType := range returnTypes {
    		if ast.OutputType() == returnType || cel.AnyType == returnType {
    			found = true
    			break
    		}
    	}
    	if !found {
    		var reason string
    		if len(returnTypes) == 1 {
    			reason = fmt.Sprintf("must evaluate to %v", returnTypes[0].String())
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                .configure(ModelActionRole.Initialize) { it.path("foo").type(Bean).action(action) }
                .configure(ModelActionRole.Mutate) { it.path("foo").type(Bean).action(action) }
                .configure(ModelActionRole.Finalize) { it.path("foo").type(Bean).action(action) }
                .configure(ModelActionRole.Validate) { it.path("foo").type(Bean).action(action) }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

            1. Set _name = "MatMul"
            2. For each TF attribute, split it into two attributes, one for name of
               the TF attribute, and the other for the type and value of the
               attribute value. Attribute value is a string with the format of
               "type$val", where type can be "bool", "string", "tfdtype", "tfshape",
               "tftensor".
               The value serialization format can be found in attr_util.h.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    func (v *ExtraMappingExpression) ReturnTypes() []*celgo.Type {
    	// return types is only used for validation. The claims variable that's available
    	// to the claim mapping expressions is a map[string]interface{}, so we can't
    	// really know what the return type is during compilation. Strict type checking
    	// is done during evaluation.
    	return []*celgo.Type{celgo.AnyType}
    }
    
    var _ ExpressionAccessor = &UserValidationCondition{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/ca.go

    )
    
    // SigningCAFileBundle locations of the files used for the signing CA
    type SigningCAFileBundle struct {
    	RootCertFile    string
    	CertChainFiles  []string
    	SigningCertFile string
    	SigningKeyFile  string
    }
    
    var pkiCaLog = log.RegisterScope("pkica", "Citadel CA log")
    
    // caTypes is the enum for the CA type.
    type caTypes int
    
    type CertOpts struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

                    return FILE_COLLECTION.asType();
                case DIRECTORY_PROPERTY:
                case REGULAR_FILE_PROPERTY:
                    return Type.getType(File.class);
                case LIST_PROPERTY:
                    return Type.getType(List.class);
                case SET_PROPERTY:
                    return Type.getType(Set.class);
                case MAP_PROPERTY:
                    return Type.getType(Map.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    			// underlying; if the underlying type is unrestricted there must be an
    			// element of the type set that violates one of the arg type checks
    			// below, so we can safely return false here.
    
    			if m.t == anyType { // anyType must have already been handled.
    				panic("unexpected printfArgType")
    			}
    			return false
    		}
    
    		// Only report a reason if typ is the argument type, otherwise it won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

      @test_util.deprecated_graph_mode_only
      def test_replace_tensors_by_numpy_ndarrays_with_tensor_list(self):
        num_samples = 8
        samples = [
            np.random.uniform(low=-1.0, high=1.0, size=(3, 3)).astype('f4')
            for _ in range(num_samples)
        ]
    
        repr_ds: repr_dataset.RepresentativeDataset = [
            {
                'input_tensor': ops.convert_to_tensor(sample),
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top