Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for xdstype (0.18 sec)

  1. src/text/template/funcs.go

    	if err := goodFunc(name, typ); err != nil {
    		return reflect.Value{}, err
    	}
    	numIn := typ.NumIn()
    	var dddType reflect.Type
    	if typ.IsVariadic() {
    		if len(args) < numIn-1 {
    			return reflect.Value{}, fmt.Errorf("wrong number of args for %s: got %d want at least %d", name, len(args), numIn-1)
    		}
    		dddType = typ.In(numIn - 1).Elem()
    	} else {
    		if len(args) != numIn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm64/asm.go

    		out.Write64(uint64(sectoff + 4))
    		var ldstType elf.R_AARCH64
    		switch r.Type {
    		case objabi.R_ARM64_PCREL_LDST8:
    			ldstType = elf.R_AARCH64_LDST8_ABS_LO12_NC
    		case objabi.R_ARM64_PCREL_LDST16:
    			ldstType = elf.R_AARCH64_LDST16_ABS_LO12_NC
    		case objabi.R_ARM64_PCREL_LDST32:
    			ldstType = elf.R_AARCH64_LDST32_ABS_LO12_NC
    		case objabi.R_ARM64_PCREL_LDST64:
    			ldstType = elf.R_AARCH64_LDST64_ABS_LO12_NC
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top