Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for coord_ (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyJavaModule.groovy

                assert parsedIvy.dependencies.findAll { it.value.confs.contains('compile') }.isEmpty()
            } else {
                assert parsedModuleMetadata.variant('apiElements').dependencies*.coords as Set == expected as Set
                parsedIvy.assertConfigurationDependsOn('compile', expected)
            }
        }
    
        @Override
        void assertRuntimeDependencies(String... expected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

                return new Relocations(relocationList);
            }
        }
    
        private static Artifact parseArtifact(String coord) {
            Artifact s;
            String[] parts = coord.split(":");
            switch (parts.length) {
                case 3:
                    s = new DefaultArtifact(parts[0], parts[1], "*", "*", parts[2]);
                    break;
                case 4:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/AbstractCppPublishingIntegrationTest.groovy

                        assert mainMetadata.variant("${buildType}${osFamilyNormalized.capitalize()}${architectureNormalized.capitalize()}${linkage.capitalize()}").availableAt.coords == "${group}:${module}_${buildType}${osFamilyNormalized.empty ? "" : "_${osFamilyNormalized.toLowerCase()}"}${architectureNormalized.empty ? "" : "_${architectureNormalized.toLowerCase().replace("-", "_")}"}:${version}"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java

                return new Relocations(relocationList);
            }
        }
    
        private static Artifact parseArtifact(String coord) {
            Artifact s;
            String[] parts = coord.split(":");
            switch (parts.length) {
                case 3:
                    s = new DefaultArtifact(parts[0], parts[1], "*", "*", parts[2]);
                    break;
                case 4:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/InternalSession.java

        org.eclipse.aether.artifact.Artifact toArtifact(Artifact artifact);
    
        org.eclipse.aether.artifact.Artifact toArtifact(ArtifactCoordinate coord);
    
        RepositorySystemSession getSession();
    
        RepositorySystem getRepositorySystem();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:55:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/html/template/attr.go

    	"colspan":         contentTypePlain,
    	"content":         contentTypeUnsafe,
    	"contenteditable": contentTypePlain,
    	"contextmenu":     contentTypePlain,
    	"controls":        contentTypePlain,
    	"coords":          contentTypePlain,
    	"crossorigin":     contentTypeUnsafe,
    	"data":            contentTypeURL,
    	"datetime":        contentTypePlain,
    	"default":         contentTypePlain,
    	"defer":           contentTypeUnsafe,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/c/tf_status_helper_test.cc

    namespace {
    
    TEST(StatusHelper, TestStatusHelper) {
      TSL_Status* s = TSL_NewStatus();
      absl::Status cc_status(absl::InvalidArgumentError("some error"));
      cc_status.SetPayload("key1", absl::Cord("value1"));
      cc_status.SetPayload("key2", absl::Cord("value2"));
      Set_TF_Status_from_Status(s, cc_status);
      ASSERT_EQ(TSL_INVALID_ARGUMENT, TSL_GetCode(s));
      ASSERT_EQ(std::string("some error"), TSL_Message(s));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status_helper.cc

      TF_SetStatus(tf_status, TSLCodeFromStatusCode(status.code()),
                   absl::StatusMessageAsCStr(status));
      status.ForEachPayload(
          [tf_status](absl::string_view key, const absl::Cord& value) {
            std::string key_str(key);
            std::string value_str(value);
            TF_SetPayload(tf_status, key_str.c_str(), value_str.c_str());
          });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

            }
            with(javaLibrary.parsedModuleMetadata) {
                assert variants.size() == 1
                assert variants[0].name == "apiElements"
                assert variants[0].dependencies*.coords == ["org:foo:1.0"]
            }
        }
    
        def "can ignore all publication warnings by variant name"() {
            given:
            def silenceMethod = "suppressPomMetadataWarningsFor"
            createBuildScripts("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/image_format/internal_api.h

    #define TENSORFLOW_CC_SAVED_MODEL_IMAGE_FORMAT_INTERNAL_API_H_
    
    #include <string>
    #include <tuple>
    
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/cord.h"
    #include "tensorflow/core/protobuf/saved_model.pb.h"
    
    #define IS_OSS false
    
    namespace tensorflow {
    namespace image_format {
    
    // Reads the SavedModel proto from {file_prefix}{.pb|.cpb}.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top