Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for null_type (0.24 sec)

  1. pkg/proxy/util/nfacct/nfacct_linux.go

    //	    __u16 nla_len:      13
    //	    __u16 nla_type:     NFACCT_NAME
    //	    char data:          dummy-metric\0
    //	}
    //
    //	(padding:)
    //	    data:               \0\0\0
    //
    //	struct nlattr{
    //	    __u16 nla_len:      12
    //	    __u16 nla_type:     NFACCT_PKTS
    //	    __u64: data:        123
    //	}
    //
    //	struct nlattr{
    //	    __u16 nla_len:      12
    //	    __u16 nla_type:     NFACCT_BYTES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      auto tail_type = mlir::dyn_cast<ShapedType>(type1);
      auto full_type = mlir::dyn_cast<ShapedType>(type2);
      if (!tail_type || !full_type || !tail_type.hasRank() ||
          !full_type.hasRank() || tail_type.getRank() > full_type.getRank())
        return false;
      auto i1 = tail_type.getShape().rbegin(), e1 = tail_type.getShape().rend();
      auto i2 = full_type.getShape().rbegin();
      return std::equal(i1, e1, i2);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_unified_experimental_test.cc

      // Test that full type information can be accessed.
      auto outs = unwrap(add_outputs);
      auto h = outs->outputs[0];
      ASSERT_NE(h, nullptr);
      ASSERT_EQ(h->FullType().type_id(), TFT_UNSET);
      ASSERT_EQ(unwrap(inputs[0])->FullType().type_id(), TFT_UNSET);
    
      // Clean up operation and inputs.
      TF_DeleteAbstractOp(add_op);
    
      TF_AbstractFunction* func =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      }
    }
    
    // Output `shard_type`, which is the type of each shard, given `full_type`. If
    // the full shape is (num_cores_per_replica * a, b, c), then the shard shape is
    // (a, b, c). `context_op` is used for error reporting, in case of errors.
    LogicalResult GetShardShapedType(Operation* context_op,
                                     int num_cores_per_replica, Type full_type,
                                     Type& shard_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

            is DataType.ConstantType<*> -> ObjectReflection.DefaultValue(type, objectOrigin)
            is DataClass -> reflectData(OperationId(-1L, DefaultOperationGenerationId.preExisting), type, objectOrigin, context)
            is DataType.NullType -> error("Null type can't appear in property types")
            is DataType.UnitType -> error("Unit can't appear in property types")
            else -> { error("Unhandled data type: ${type.javaClass.simpleName}") }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator.go

    					auditAnnotationResult.Action = AuditAnnotationActionExclude
    				} else {
    					auditAnnotationResult.Action = AuditAnnotationActionPublish
    					auditAnnotationResult.Value = value
    				}
    			case celtypes.NullType:
    				auditAnnotationResult.Action = AuditAnnotationActionExclude
    			default:
    				auditAnnotationResult.Action = AuditAnnotationActionError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    }
    
    func (v *fakeAuditAnnotationCondition) GetExpression() string {
    	return v.ValueExpression
    }
    
    func (v *fakeAuditAnnotationCondition) ReturnTypes() []*celgo.Type {
    	return []*celgo.Type{celgo.StringType, celgo.NullType}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

      using tensorflow::RecordMutation;
      mutex_lock l(graph->mu);
      FullTypeDef full_type;
      full_type.ParseFromArray(full_type_proto->data, full_type_proto->length);
      *op->node.mutable_def()->mutable_experimental_type() = full_type;
      RecordMutation(graph, *op, "setting fulltype");
    }
    
    void TF_SetRequestedDevice(TF_Graph* graph, TF_Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/value_test.go

    		{float64(1.2), types.DoubleType},
    		{int64(-42), types.IntType},
    		{uint64(63), types.UintType},
    		{time.Duration(300), types.DurationType},
    		{time.Now().UTC(), types.TimestampType},
    		{types.NullValue, types.NullType},
    		{NewListValue(), types.ListType},
    		{NewMapValue(), types.MapType},
    		{[]byte("bytes"), types.BytesType},
    		{NewObjectValue(objType), objType},
    	}
    	for i, tc := range tests {
    		idx := i
    		tst := tc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/value.go

    		return types.Uint(v), UintType, nil
    	case time.Duration:
    		return types.Duration{Duration: v}, DurationType, nil
    	case time.Time:
    		return types.Timestamp{Time: v}, TimestampType, nil
    	case types.Null:
    		return v, NullType, nil
    	case *ListValue:
    		return v, ListType, nil
    	case *MapValue:
    		return v, MapType, nil
    	case *ObjectValue:
    		return v, v.objectType, nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
Back to top