Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for xdstype (0.14 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

            return this
        }
    
        @Override
        MavenModule hasPackaging(String packaging) {
            this.packaging = packaging
            return this
        }
    
        @Override
        MavenModule hasType(String type) {
            this.type = type
            return this
        }
    
        @Override
        MavenModule variant(String variant, Map<String, String> attributes) {
            createVariant(variant, attributes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

            }
        }
    
        @Issue("gradle/gradle#8312")
        def "can resolve a platform with a constraint to determine the platform version"() {
            def platform = mavenHttpRepo.module("org", "platform", "1.0")
                .hasType("pom")
                .allowAll()
                .publish()
    
            when:
            buildFile << """
                dependencies {
                    constraints {
                       api "org:platform:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. schema/relationship.go

    func hasPolymorphicRelation(tagSettings map[string]string) bool {
    	if _, ok := tagSettings["POLYMORPHIC"]; ok {
    		return true
    	}
    
    	_, hasType := tagSettings["POLYMORPHICTYPE"]
    	_, hasId := tagSettings["POLYMORPHICID"]
    
    	return hasType && hasId
    }
    
    func (schema *Schema) setRelation(relation *Relationship) {
    	// set non-embedded relation
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            module.artifact(type: 'zip')
            module.artifact(classifier: 'classifier')
            module.publish()
            repo.module('org.gradle.test', 'dist', '1.0').hasType('zip').publish()
    
            file('build.gradle') << """
    repositories {
        maven { url '${repo.uri}' }
    }
    configurations {
        compile
    }
    dependencies {
        compile "org.gradle.test:lib:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            libraryModule.parsedPom.scopes.compile.assertDependencyManagement()
            libraryModule.parsedPom.scopes['import'].expectDependencyManagement("org.test:$platformName:1.0").hasType('pom')
            libraryModule.parsedModuleMetadata.variant('apiElements') {
                dependency("org.test:bar:").exists()
                dependency("org.test:$platformName:1.0").exists()
                noMoreDependencies()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/array_grad.cc

      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Tile", TileGrad);
    
    // Create a constant of the provided d_type;
    Output ConstHelper(const Scope& scope, int value, DataType d_type) {
      return Cast(scope, Const(scope, value), d_type);
    }
    
    // Adds the batch offsets to the given indices and returns the results.
    Output GetBatchIndices(const Scope& scope, const Output& params_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

      auto gx_1 =
          Mul(scope, Mul(scope, grad, y), Pow(scope, x, Sub(scope, y, one)));
      // Avoid false singularity at x = 0
      DataType x_dtype = x.type();
      auto zero = Cast(scope, Const(scope, 0.0), x_dtype);
      if (x_dtype == DT_COMPLEX64 || x_dtype == DT_COMPLEX128) {
        // real(x) < 0 is fine for the complex case
        auto log_x = Where3(scope, NotEqual(scope, x, zero), Log(scope, x),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds.go

    type SecretResource struct {
    	credentials.SecretResource
    	pkpConfHash string
    }
    
    var _ model.XdsCacheEntry = SecretResource{}
    
    func (sr SecretResource) Type() string {
    	return model.SDSType
    }
    
    func (sr SecretResource) Key() any {
    	return sr.SecretResource.Key() + "/" + sr.pkpConfHash
    }
    
    func (sr SecretResource) DependentConfigs() []model.ConfigHash {
    	configs := []model.ConfigHash{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/iimport.go

    		return t
    	}
    
    	if off < predeclReserved {
    		errorf("predeclared type missing from cache: %v", off)
    	}
    
    	r := &importReader{p: p}
    	r.declReader.Reset(p.declData[off-predeclReserved:])
    	t := r.doType(base)
    
    	if canReuse(base, t) {
    		p.typCache[off] = t
    	}
    	return t
    }
    
    // canReuse reports whether the type rhs on the RHS of the declaration for def
    // may be re-used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

     * }
     *
     * task generateRestApiDocs(type: Javadoc) {
     *   source = sourceSets.main.allJava
     *   destinationDir = reporting.file("rest-api-docs")
     *   options.docletpath = configurations.jaxDoclet.files.asType(List)
     *   options.doclet = "com.lunatech.doclets.jax.jaxrs.JAXRSDoclet"
     *   options.addStringOption("jaxrscontext", "http://localhost:8080/myapp")
     * }
     * </pre>
     */
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top