Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,390 for other_2 (0.17 sec)

  1. 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)
  2. docs/en/docs/help-fastapi.md

    The idea is for the **FastAPI** community to be kind and welcoming. At the same time, don't accept bullying or disrespectful behavior towards others. We have to take care of each other.
    
    ---
    
    Here's how to help others with questions (in discussions or issues):
    
    ### Understand the question
    
    * Check if you can understand what is the **purpose** and use case of the person asking.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        // Unknown resource has potential dependence on all other resources, except
        // those that are only self-dependent. For `Fetch` op make every resource
        // dependent in any case to ensure that all side-effecting ops in
        // `Graph` feed into `Fetch` (its terminator).
        for (auto& entry : per_resource_access_info_) {
          ResourceId other_id = entry.getFirst();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. 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)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         */
        private String changefreq;
    
        /**
         * The priority of this URL relative to other URLs on your site. Valid
         * values range from 0.0 to 1.0. This value does not affect how your pages
         * are compared to pages on other sites—it only lets the search engines know
         * which pages you deem most important for the crawlers.
         *
         * The default priority of a page is 0.5.
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/config/kube/crd/conversion.go

    		gvk := obj.GroupVersionKind()
    		s, exists := collections.PilotGatewayAPI().FindByGroupVersionAliasesKind(resource.FromKubernetesGVK(&gvk))
    		if !exists {
    			log.Debugf("unrecognized type %v", obj.Kind)
    			others = append(others, obj)
    			continue
    		}
    
    		cfg, err := ConvertObject(s, &obj, "")
    		if err != nil {
    			return nil, nil, fmt.Errorf("cannot parse proto message for %v: %v", obj.Name, err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	var haveExemptFS, haveCatchAllFS bool
    	for i, fs := range newFSs {
    		otherFS := fsMap[fs.Name]
    		if otherFS != nil {
    			// This client is forbidden to do this.
    			panic(fmt.Sprintf("Given two FlowSchema objects with the same name: %s and %s", fcfmt.Fmt(otherFS), fcfmt.Fmt(fs)))
    		}
    		fsMap[fs.Name] = fs
    		_, goodPriorityRef := meal.newPLStates[fs.Spec.PriorityLevelConfiguration.Name]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  10. docs/en/docs/python-types.md

        * `dict`
    
        And the same as with Python 3.8, from the `typing` module:
    
        * `Union`
        * `Optional`
        * ...and others.
    
    === "Python 3.8+"
    
        * `List`
        * `Tuple`
        * `Set`
        * `Dict`
        * `Union`
        * `Optional`
        * ...and others.
    
    ### Classes as types
    
    You can also declare a class as the type of a variable.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top