Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,415 for other2 (0.21 sec)

  1. docs/en/docs/help-fastapi.md

    On the other side, there are thousands of users in the chat systems, so there's a high chance you'll find someone to talk to there, almost all the time. 😄
    
    ## Sponsor the author
    
    You can also financially support the author (me) through <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub sponsors</a>.
    
    There you could buy me a coffee ☕️ to say thanks. 😄
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    			creater:        &mockCreater{obj: &testDecodable{}},
    			expectedObject: &testDecodable{TypeMeta: metav1.TypeMeta{APIVersion: "other/"}},
    			expectedGVK:    &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"},
    		},
    		// group version, kind is defaulted
    		{
    			data:           []byte(`{"apiVersion":"other1/blah1"}`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSet.java

        Builder<E> combine(Builder<E> other) {
          if (hashTable != null) {
            for (int i = 0; i < other.size; ++i) {
              // requireNonNull is safe because the first `size` elements are non-null.
              add((E) requireNonNull(other.contents[i]));
            }
          } else {
            addAll(other.contents, other.size);
          }
          return this;
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

         * only that this method compares to the first segment of the path if there is no common prefix.
         *
         * The path must not start with a separator.
         *
         * For example, this method returns:
         *     some/path     == some/other
         *     some1/path    &lt;  some2/other
         *     some/path     &gt;  some1/other
         *     some/same     == some/same/more
         *     some/one/alma == some/two/bela
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. pkg/api/pod/warnings.go

    			}
    			k := fmt.Sprintf("%d/%s", port.ContainerPort, port.Protocol)
    			if others, found := allPorts[k]; found {
    				// Someone else has this protcol+port, but it still might not be a conflict.
    				for _, other := range others {
    					if port.HostIP == other.port.HostIP && port.HostPort == other.port.HostPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. docs/debugging/xl-meta/main.go

    					}
    
    					otherPart := getPartNum(other[0])
    					if part != otherPart {
    						fmt.Println("part ", part, " != other part", otherPart, other[0])
    						continue
    					}
    					// fmt.Println("part ", part, "other part", otherPart, other[0])
    					fmt.Printf("Reading version %q Part %d.\n", otherKey, otherPart)
    					// os.Exit(0)
    					otherM, err := readAndMap(other, part, block)
    					if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

       *
       * <p>The array {@code others} must not be longer than {@code Integer.MAX_VALUE - 6}.
       *
       * @since 3.0 (source-compatible since 2.0)
       */
      @SafeVarargs // For Eclipse. For internal javac we have disabled this pointless type of warning.
      public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) {
        checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

                return DependentsSet.dependencyToAll(fullRebuildCause);
            }
            if (other.fullRebuildCause != null) {
                return DependentsSet.dependencyToAll(other.fullRebuildCause);
            }
    
            ImmutableSet.Builder<String> changed = ImmutableSet.builder();
            for (String added : Sets.difference(classHashes.keySet(), other.classHashes.keySet())) {
                DependentsSet dependents = getDependents(added);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    In the example below, the plugin is coded in the `other.gradle(.kts)` script file.
    Then, the `other.gradle(.kts)` is applied to `build.gradle(.kts)` using `apply from`:
    
    ====
    include::sample[dir="snippets/customPlugins/customPlugin/kotlin",files="other.gradle.kts[]"]
    include::sample[dir="snippets/customPlugins/customPlugin/groovy",files="other.gradle[]"]
    ====
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/docker.md

    RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
    
    COPY ./app /app/app
    ```
    
    ### When to Use
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top