Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for projectFor (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                if (childTarget == null) {
                    throw new NullPointerException("child is null");
                }
                // TODO:LPTR Remove projection for reference node
                // This shouldn't be needed, but if there's no actual value referenced, model report can only
                // show the type of the node if we do this for now. It should use the schema instead to find
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    // LINT.IfChange
    enum LSTMKernelType : byte {
      // Full LSTM kernel which supports peephole and projection.
      FULL = 0,
      // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
      BASIC = 1,
    }
    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top