Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for PROPERTIES (0.14 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    String getParent(); public String getChild(); } org/codehaus/plexus/embed/Embedder.class package org.codehaus.plexus.embed; public synchronized class Embedder implements PlexusEmbedder { private java.net.URL configurationUrl; private java.util.Properties properties; private org.codehaus.plexus.DefaultPlexusContain container; private boolean embedderStarted; private boolean embedderStopped; private java.util.Map context; public void Embedder(); public void Embedder(java.util.Map, String) throws EmbedderException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Env Properties */
        public static final String LABELS_system_info_env_title = "{labels.system_info_env_title}";
    
        /** The key of the message: System Properties */
        public static final String LABELS_system_info_prop_title = "{labels.system_info_prop_title}";
    
        /** The key of the message: Fess Properties */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    LogicalResult ConstOp::inferReturnTypes(
        MLIRContext* context, std::optional<Location> location, ValueRange operands,
        DictionaryAttr attributes, OpaqueProperties properties, RegionRange regions,
        SmallVectorImpl<Type>& inferredReturnTypes) {
      ConstOpAdaptor adaptor(operands, attributes, properties, regions);
      auto value = adaptor.getValue();
      if (!value) return emitOptionalError(location, "missing attribute 'value'");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def localBuildCacheDir = executer.gradleUserHomeDir.file("caches/build-cache-1")
            def localBuildCacheFiles = localBuildCacheDir.list { dir, fileName -> fileName != "gc.properties" && fileName != "build-cache-1.lock" }
            localBuildCacheFiles.length == entryCount
    
            where:
            transformsDisabled   | entryCount
            "true"               | 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. go.sum

    github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de/go.mod h1:zAbeS9B/r2mtpb6U+EI2rYA5OAXxsYw6wTamcNW+zcE=
    github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
    github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY=
    github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ClassLoader, org.codehaus.plexus.component.configurator.expression.ExpressionEvaluator, org.codehaus.plexus.component.configurator.ConfigurationListene) throws org.codehaus.plexus.component.configurator.ComponentConfigurati; private void addEntry(java.util.Properties, String, org.codehaus.plexus.configuration.PlexusConfiguration) throws org.codehaus.plexus.component.configurator.ComponentConfigurati; } org/codehaus/plexus/component/configurator/converters/ConfigurationConvert.class package org.codehaus.plex...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Validates inputs to the TPU TF/XLA bridge";
    
      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
        It checks the relations of multiple ops. Properties of single ops are
        checked by the 'verify' method of ops.
      }];
    
      let constructor = "TFTPU::CreateTPUValidateInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/unicode/tables.go

    	Zanabazar_Square       = _Zanabazar_Square       // Zanabazar_Square is the set of Unicode characters in script Zanabazar_Square.
    )
    
    // Properties is the set of Unicode property tables.
    var Properties = map[string]*RangeTable{
    	"ASCII_Hex_Digit":                    ASCII_Hex_Digit,
    	"Bidi_Control":                       Bidi_Control,
    	"Dash":                               Dash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
      DataType dtype = node.properties()->input_types[idx];
      mlir::Type element_type;
      TF_RETURN_IF_ERROR(ConvertDataType(dtype, builder, &element_type));
      return mlir::UnrankedTensorType::get(element_type);
    }
    
    absl::StatusOr<mlir::Type> ImporterBase::InferOutputType(
        const Node& node, int idx, mlir::Builder builder) {
      DataType dtype = node.properties()->output_types[idx];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.codehaus.modello modello-maven-plugin 1.0-alpha-17 1.0.0 src/main/mdo/metadata.mdo site-docs pre-site xdoc xsd standard java xpp3-reader xpp3-writer maven-surefire-plugin **/testutils/** META-INF/maven/org.apache.maven.artifact/maven-artifact/pom.properties #Generated by Maven #Mon Oct 15 10:14:00 EDT 2007 version=3.0-SNAPSHOT groupId=org.apache.maven.artifact artifactId=maven-artifact...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
Back to top