Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,950 for uber (0.04 sec)

  1. docs/de/docs/deployment/versions.md

    ## Über Starlette
    
    Sie sollten die Version von `starlette` nicht pinnen.
    
    Verschiedene Versionen von **FastAPI** verwenden eine bestimmte neuere Version von Starlette.
    
    Sie können **FastAPI** also einfach die korrekte Starlette-Version verwenden lassen.
    
    ## Über Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/archivesWithJavaPlugin/kotlin/build.gradle.kts

    // tag::create-uber-jar-example[]
    plugins {
        java
    }
    
    version = "1.0.0"
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("commons-io:commons-io:2.6")
    }
    
    tasks.register<Jar>("uberJar") {
        archiveClassifier = "uber"
    
        from(sourceSets.main.get().output)
    
        dependsOn(configurations.runtimeClasspath)
        from({
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 485 bytes
    - Viewed (0)
  3. docs/de/docs/about/index.md

    # Über
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 70 bytes
    - Viewed (0)
  4. LICENSES/vendor/go.uber.org/multierr/LICENSE

    = vendor/go.uber.org/multierr licensed under: =
    
    Copyright (c) 2017-2021 Uber Technologies, Inc.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 08:32:34 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. LICENSES/vendor/go.uber.org/zap/LICENSE

    = vendor/go.uber.org/zap licensed under: =
    
    Copyright (c) 2016-2017 Uber Technologies, Inc.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/archivesWithJavaPlugin/groovy/build.gradle

    // tag::create-uber-jar-example[]
    plugins {
        id 'java'
    }
    
    version = '1.0.0'
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'commons-io:commons-io:2.6'
    }
    
    tasks.register('uberJar', Jar) {
        archiveClassifier = 'uber'
    
        from sourceSets.main.output
    
        dependsOn configurations.runtimeClasspath
        from {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 479 bytes
    - Viewed (0)
  7. docs/de/docs/deployment/https.md

    * **TCP weiß nichts über „<abbr title="Domäne, Bereich, Wirkungsraum">Domains</abbr>“**. Nur über IP-Adressen.
        * Die Informationen über die angeforderte **spezifische Domain** befinden sich in den **HTTP-Daten**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. LICENSES/vendor/go.uber.org/goleak/LICENSE

    = vendor/go.uber.org/goleak licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2018 Uber Technologies, Inc.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 14 11:11:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/request-forms.md

        Wenn das Formular stattdessen Dateien enthält, werden diese mit `multipart/form-data` kodiert. Im nächsten Kapitel erfahren Sie mehr über die Handhabung von Dateien.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. hack/tools/tools.go

    	_ "honnef.co/go/tools/cmd/staticcheck"
    	_ "sigs.k8s.io/logtools/logcheck"
    
    	// benchmarking tools
    	_ "github.com/cespare/prettybench"
    	_ "gotest.tools/gotestsum"
    
    	// mockgen
    	_ "go.uber.org/mock/mockgen"
    
    	// tools like cpu
    	_ "go.uber.org/automaxprocs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top