Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for Requirements (0.46 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        }
        tasks.named<Javadoc>("javadoc") {
            // See GradleJavadocsPlugin.generateJavadocs() and the javadocsAll task
            (options as StandardJavadocDocletOptions).tags("apiNote:a:API Note:", "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:")
        }
    }
    
    fun MavenPublication.configureGradleModulePublication() {
        from(components["java"])
        artifactId = moduleIdentity.baseName.get()
        versionMapping {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. docs/ru/docs/deployment/versions.md

    Первым делом вам следует "закрепить" конкретную последнюю используемую версию **FastAPI**, которая корректно работает с вашим приложением.
    
    Например, в своём приложении вы используете версию `0.45.0`.
    
    Если вы используете файл `requirements.txt`, вы можете указать версию следующим способом:
    
    ```txt
    fastapi==0.45.0
    ```
    
    это означает, что вы будете использовать именно версию `0.45.0`.
    
    Или вы можете закрепить версию следующим способом:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    // limitations under the License.
    
    [[implemention_plugins]]
    = Understanding Implementation Options for Plugins
    
    The choice between script, precompiled script, or binary plugins depends on your specific requirements and preferences.
    
    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # This module has the same module dependency graph in Go 1.16 as in Go 1.17,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.cc

              .getRank();
      const int64_t filter_rank =
          mlir::dyn_cast<ShapedType>(dot_general_op.getOperand(1).getType())
              .getRank();
      // The following conditions are such requirements:
      //   - rank(lhs) is 1 or 2
      //   - rank(rhs) = 2
      //   - size(lhs_contracting_dimensions) = 1
      //   - size(rhs_contracting_dimensions) = 1
      //   - lhs_contracting_dimension = last dimension of lhs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # This module selects the same versions in Go 1.16 and 1.17 for all modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/order.go

    		next = gState{seqinc, gRunnable}
    		return
    	case EvGCStart:
    		g = garbage
    		init = gState{ev.Args[0], gDead}
    		next = gState{ev.Args[0] + 1, gDead}
    		return
    	default:
    		// no ordering requirements
    		g = unordered
    		return
    	}
    }
    
    func transitionReady(g uint64, curr, init gState) bool {
    	return g == unordered || (init.seq == noseq || init.seq == curr.seq) && init.status == curr.status
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, Go 1.17 produces an error for one module, and Go 1.16
    # produces a different error for a different module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                options.addStringOption("source", "8");
                options.tags("apiNote:a:API Note:", "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:");
                // TODO: This breaks the provider
                options.links(javadocs.getJavaApi().get().toString(), javadocs.getGroovyApi().get().toString());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1/types.go

    	// runtime (using native Linux containers) will be used to run the containers
    	// in a pod.
    	// The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
    	// and is immutable.
    	Handler string `json:"handler" protobuf:"bytes,2,opt,name=handler"`
    
    	// overhead represents the resource overhead associated with running a pod for a
    	// given RuntimeClass. For more details, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top