Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for objectValue (0.49 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/value.go

    // NewObjectValue creates a struct value with a schema type and returns the empty ObjectValue.
    func NewObjectValue(sType *DeclType) *ObjectValue {
    	return &ObjectValue{
    		structValue: newStructValue(),
    		objectType:  sType,
    	}
    }
    
    // ObjectValue is a struct with a custom schema type which indicates the fields and types
    // associated with the structure.
    type ObjectValue struct {
    	*structValue
    	objectType *DeclType
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            @Option(option = "objectValue", description = "object value")
            public void setObjectValue(Object value) {
            }
        }
    
        public static abstract class AbstractTestClassWithTwoInterfacesWithSameMethod implements TestInterface, TestInterfaceWithSameFunctionButDifferentOptionName {
            @Option(option = "objectValue", description = "object value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/metrics.cc

      return *saved_model_write_path_and_singleprint->GetCell();
    }
    
    std::string MakeFingerprintJson(FingerprintDef fingerprint_def) {
      Json::Value fingerprint = Json::objectValue;
      fingerprint["saved_model_checksum"] =
          Json::UInt64(fingerprint_def.saved_model_checksum());
      fingerprint["graph_def_program_hash"] =
          Json::UInt64(fingerprint_def.graph_def_program_hash());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top