Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for Element (0.15 sec)

  1. src/cmd/go/internal/test/test.go

    	    the package list (if present) must appear before this flag.
    
    	-c
    	    Compile the test binary to pkg.test in the current directory but do not run it
    	    (where pkg is the last element of the package's import path).
    	    The file name or target directory can be changed with the -o flag.
    
    	-exec xprog
    	    Run the test binary using xprog. The behavior is the same as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                if (state != State.EXCLUDE) {
                    // we are currently adding a configuration to either an include, exclude or artifact
                    // element
                    // of a dependency. This means that we have to add this element to the corresponding
                    // conf
                    // of the current dependency descriptor
                    if (confAware instanceof DependencyArtifactDescriptor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    audio:not([controls]) {
    	display: none;
    	height: 0;
    }
    
    /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
    [hidden],
    template {
    	display: none;
    }
    
    script {
    	display: none !important;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        return CreateUniformQuantizedPerAxisTypeParams(qtype, loc, rewriter, scale,
                                                       zero_point);
      }
      return failure();
    }
    
    // Converts the element type of the input tensor to the corresponding quantized
    // version. Supports only int8 for now and returns nullptr if the input type is
    // not supported.
    ShapedType ConvertIntToQint(ShapedType input_type, MLIRContext* ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    			Path:   "search",
    		},
    		want: "http://www.google.com/search",
    	},
    	// Relative path with first element containing ":" should be prepended with "./", golang.org/issue/17184
    	{
    		url: URL{
    			Path: "this:that",
    		},
    		want: "./this:that",
    	},
    	// Relative path with second element containing ":" should not be prepended with "./"
    	{
    		url: URL{
    			Path: "here/this:that",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            Version.BASE,
                            "parent.artifactId",
                            null,
                            "must be changed"
                                    + ", the parent element cannot have the same groupId:artifactId as the project.",
                            parent);
                }
    
                if (equals("LATEST", parent.getVersion()) || equals("RELEASE", parent.getVersion())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    	// syntax errors
    	{CaseName: Name(""), in: `{"X": "foo", "Y"}`, err: &SyntaxError{"invalid character '}' after object key", 17}},
    	{CaseName: Name(""), in: `[1, 2, 3+]`, err: &SyntaxError{"invalid character '+' after array element", 9}},
    	{CaseName: Name(""), in: `{"X":12x}`, err: &SyntaxError{"invalid character 'x' after object key:value pair", 8}, useNumber: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // Map from input graph nodes to subgraph nodes.
      absl::flat_hash_map<const Node*, Node*> node_images;
    
      // Each entry of src_arg_pairs is a pair whose first element is a node in the
      // original graph that has an output edge in the subgraph, and whose second
      // element is the arg node in the subgraph that it sends to. The vector will
      // be filled in below in AddArgs.
      std::vector<std::pair<const Node*, Node*>> src_arg_pairs;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            Version.BASE,
                            "parent.artifactId",
                            null,
                            "must be changed"
                                    + ", the parent element cannot have the same groupId:artifactId as the project.",
                            parent);
                }
    
                if (equals("LATEST", parent.getVersion()) || equals("RELEASE", parent.getVersion())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            1 * resolutionStrategy.copy() >> resolutionStrategyCopy
    
            and:
            def copiedConfiguration = configuration.copy(new Spec<Dependency>() {
                boolean isSatisfiedBy(Dependency element) {
                    return !element.getGroup().equals("group3")
                }
            })
    
            then:
            checkCopiedConfiguration(configuration, copiedConfiguration, resolutionStrategyCopy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top