Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for Weiner (0.23 sec)

  1. docs/de/docs/index.md

    Das machen Sie mit modernen Standard-Python-Typen.
    
    Sie müssen keine neue Syntax, Methoden oder Klassen einer bestimmten Bibliothek usw. lernen.
    
    Nur Standard-**Python+**.
    
    Zum Beispiel für ein `int`:
    
    ```Python
    item_id: int
    ```
    
    oder für ein komplexeres `Item`-Modell:
    
    ```Python
    item: Item
    ```
    
    ... und mit dieser einen Deklaration erhalten Sie:
    
    * Editor-Unterstützung, einschließlich:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

            builder.add(field);
          }
        }
        return builder.build();
      }
    
      private static final Splitter SPLITTER = Splitter.on('_');
      private static final Joiner JOINER = Joiner.on('-');
    
      private static String upperToHttpHeaderName(
          String constantName,
          ImmutableBiMap<String, String> specialCases,
          ImmutableSet<String> uppercaseAcronyms) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/runtime/netpoll_kqueue_event.go

    		ident:  kqIdent,
    		filter: _EVFILT_USER,
    		flags:  _EV_ADD,
    	}
    	for {
    		n := kevent(kq, &ev, 1, nil, 0, nil)
    		if n == 0 {
    			break
    		}
    		if n == -_EINTR {
    			// All changes contained in the changelist should have been applied
    			// before returning EINTR. But let's be skeptical and retry it anyway,
    			// to make a 100% commitment.
    			continue
    		}
    		println("runtime: kevent for EVFILT_USER failed with", -n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

                this.participants = participants;
                this.candidates = candidates;
            }
    
            @Override
            public String toString() {
                return Joiner.on(",").join(participants) + ":" + Joiner.on(",").join(candidates);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SourceFile.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures;
    
    import com.google.common.base.Joiner;
    import org.gradle.test.fixtures.file.TestFile;
    
    public class SourceFile {
        private final String path;
        private final String name;
        private final String content;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.client;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.GradleException;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            args.add("-classpath");
            args.add(Joiner.on(File.pathSeparatorChar).join(classpath));
    
            if (!modulePath.isEmpty()) {
                if (moduleVersion != null) {
                    args.add("--module-version");
                    args.add(moduleVersion);
                }
                args.add("--module-path");
                args.add(Joiner.on(File.pathSeparatorChar).join(modulePath));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.compile;
    
    import com.google.common.base.Joiner;
    import com.google.common.base.Predicate;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results.report;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.Lists;
    import com.googlecode.jatl.Html;
    import groovy.json.JsonOutput;
    import org.apache.commons.lang.StringUtils;
    import org.gradle.performance.results.CrossVersionPerformanceTestHistory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

                return Optional.empty();
            }
            var joiner = new StringJoiner(
                    ", ",
                    "Filename-based automodules detected on the module-path: ",
                    "Please don't publish this project to a public artifact repository.");
            automodulesDetected.forEach(joiner::add);
            return Optional.of(joiner.toString());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top