Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for genValue (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	AuditID      [16]byte
    	_            [4]byte // rsrvd1
    	File_tag     struct {
    		Ccsid   uint16
    		Txtflag uint16 // aggregating Txflag:1 deferred:1 rsvflags:14
    	}
    	CharsetID [8]byte
    	Blocks    int64
    	Genvalue  uint32
    	Reftim31  [4]byte
    	Fid       [8]byte
    	Filefmt   byte
    	Fspflag2  byte
    	_         [2]byte // rsrvd2
    	Ctimemsec int32
    	Seclabel  [8]byte
    	_         [4]byte // rsrvd3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

      // Verify function attributes.
      auto op_func_attr_array = op.getOpFuncAttrs().getValue();
      for (auto op_attr : op_func_attr_array) {
        auto key_value = mlir::dyn_cast<mlir::ArrayAttr>(op_attr);
        if (!key_value || key_value.getValue().size() != 2 ||
            !mlir::isa<mlir::StringAttr>(key_value.getValue()[0]) ||
            !mlir::isa<mlir::StringAttr>(key_value.getValue()[1]))
          return op.emitOpError() << "each op_func_attr should be a key-value "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/validators.cc

      const auto &elements = mlir::cast<ArrayAttr>(attr).getValue();
      if (elements.size() != 4 ||
          std::any_of(elements.begin(), elements.end(),
                      [](Attribute e) { return !mlir::isa<IntegerAttr>(e); }))
        return false;
    
      if (mlir::cast<IntegerAttr>(elements.front()).getValue() != 1 ||
          mlir::cast<IntegerAttr>(elements.back()).getValue() != 1)
        return false;
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

                InstrumentationAnalysisTransform.class,
                spec -> {
                    spec.getFrom().attribute(INSTRUMENTED_ATTRIBUTE, NOT_INSTRUMENTED.getValue());
                    spec.getTo().attribute(INSTRUMENTED_ATTRIBUTE, ANALYZED_ARTIFACT.getValue());
                    spec.parameters(params -> {
                        params.getBuildService().set(service);
                        params.getContextId().set(contextId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.cc

      if (replicate_attr.getValue().empty())
        return op.emitOpError()
               << "has an empty '" << kReplicationInfoAttr << "' attribute.";
      if (failed(IsValidDeviceTypeOrEmpty(compile_attr))) {
        return op.emitOpError() << "has invalid '" << kCompileDeviceTypeAttr
                                << "' value '" << compile_attr.getValue() << "'";
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

      assert(op_attrs);
      op_attrs->clear();
    
      mlir::Builder builder(context);
      for (auto iter : op_attr_array) {
        auto key_value = mlir::cast<mlir::ArrayAttr>(iter).getValue();
        llvm::StringRef key = mlir::cast<mlir::StringAttr>(key_value[0]).getValue();
        mlir::Attribute value = key_value[1];
        op_attrs->push_back({key, value});
      }
    }
    
    mlir::ParseResult ParseExecuteOpCommon(mlir::OpAsmParser &parser,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnumBuildOption.java

                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        private void applyTo(String value, T settings, Origin origin) {
            applyTo(getValue(value), settings, origin);
        }
    
        private E getValue(String value) {
            E enumValue = null;
            if (value != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    		return json.Marshal(this.IntVal.GetValue())
    	}
    	return json.Marshal(this.StrVal.GetValue())
    }
    
    func (this *IntOrString) UnmarshalJSONPB(_ *github_com_golang_protobuf_jsonpb.Unmarshaler, value []byte) error {
    	return this.UnmarshalJSON(value)
    }
    
    func (this *IntOrString) ToKubernetes() intstr.IntOrString {
    	if this.IntVal != nil {
    		return intstr.FromInt32(this.GetIntVal().GetValue())
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/JdkBackedImmutableBiMap.java

          V oldValue = forwardDelegate.putIfAbsent(e.getKey(), e.getValue());
          if (oldValue != null) {
            throw conflictException("key", e.getKey() + "=" + oldValue, entryArray[i]);
          }
          K oldKey = backwardDelegate.putIfAbsent(e.getValue(), e.getKey());
          if (oldKey != null) {
            throw conflictException("value", oldKey + "=" + e.getValue(), entryArray[i]);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractIsolatableScalarValue.java

        public ValueSnapshot asSnapshot() {
            return this;
        }
    
        @Override
        public T isolate() {
            return getValue();
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isInstance(getValue())) {
                return type.cast(getValue());
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top