Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for projectFor (0.35 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            if (typeArguments.size != typeParameters.size) return emptyMap()
    
            return buildMap(typeArguments.size) {
                for ((index, projection) in typeArguments.withIndex()) {
                    if (projection !is ConeKotlinType) return emptyMap()
                    put(typeParameters[index], projection.asKtType())
                }
            }
        }
    
        /**
         * Maps [typeArguments] to the type parameters of [partiallyAppliedSymbol].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

                 TypeIsPred<"cell_to_input_weights", NoneType>]>]>]>>;
    
    def LstmProjectionWeightBiasConstraint : PredOpTrait<
      "either projection weight must be specified or both projection weight and "
      "projection bias must not be specified",
       Or<[
          And<[TypeIsPred<"projection_weights", NoneType>,
               TypeIsPred<"projection_bias", NoneType>]>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

                    unzipped project(path: '${bar.path}', configuration: 'zipped')
                }
            """
            bar.buildFile << """
                ${zipTaskConfiguration}
            """
            bar.projectDir.createDir('inputFiles').createFile('bar.txt')
    
            when:
            args '--parallel', '--max-workers=2'
            succeeds(generate.path, clean.path)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.unidirectional_sequence_lstm' op failed to verify that either projection weight must be specified or both projection weight and projection bias must not be specified}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            """
                ${instrument("'settings'")}
                $includes
                rootProject.children.each { project ->
                    project.projectDir = new File(project.name)
                    project.buildFileName = "\${project.name}.gradle"
                }
            """
        }
    
        String taskThrowingError() {
            simpleBuild('''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. pkg/volume/util/atomic_writer.go

    		return nil, err
    	}
    
    	return &AtomicWriter{targetDir: targetDir, logContext: logContext}, nil
    }
    
    const (
    	dataDirName    = "..data"
    	newDataDirName = "..data_tmp"
    )
    
    // Write does an atomic projection of the given payload into the writer's target
    // directory.  Input paths must not begin with '..'.
    // setPerms is an optional pointer to a function that caller can provide to set the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            inDirectory(file(path))
        }
    
        protected GradleExecuter inDirectory(File directory) {
            executer.inDirectory(directory)
        }
    
        protected GradleExecuter projectDir(path) {
            executer.usingProjectDirectory(file(path))
        }
    
        /**
         * Use requireOwnGradleUserHomeDir(because) instead
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onAccess("tasksByName")
                return delegate.getTasksByName(name, recursive)
            }
    
            override fun getProjectDir(): File {
                return delegate.projectDir
            }
    
            override fun file(path: Any): File {
                onAccess("file")
                return delegate.file(path)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    }
    
    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    enum LSTMKernelType : byte {
      // Full LSTM kernel which supports peephole and projection.
      FULL = 0,
      // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
      BASIC = 1,
    }
    
    // An implementation of TensorFlow LSTMCell and CoupledInputForgetGateLSTMCell
    table LSTMOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .settings.gradle.kts
    [source,kotlin]
    ----
    include("project-without-directory")
    project(":project-without-directory").projectDir.mkdirs()
    ----
    ======
    [.multi-language-sample]
    ======
    .settings.gradle
    [source,groovy]
    ----
    include 'project-without-directory'
    project(":project-without-directory").projectDir.mkdirs()
    ----
    ======
    =====
    
    
    [[changes_8.4]]
    == Upgrading from 8.3 and earlier
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top