Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 735 for other_2 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/config/analysis/analyzers/webhook/webhook.go

    					}
    				}
    			}
    			if len(matches) > 1 {
    				for match := range matches {
    					others := matches.Difference(sets.New(match))
    					context.Report(gvk.MutatingWebhookConfiguration, msg.NewInvalidWebhook(resources[match],
    						fmt.Sprintf("Webhook overlaps with others: %v. This may cause injection to occur twice.", sets.SortedList(others))))
    				}
    			}
    		}
    	}
    
    	// Next, check service references
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho_update_uuid.go

    	// to random or time-based.  This is something of a fiction since
    	// we're not actually hashing using MD5 or SHA1, but it seems better
    	// to use this UUID flavor than any of the others. This is similar
    	// to how other linkers handle this (for example this code in lld:
    	// https://github.com/llvm/llvm-project/blob/2a3a79ce4c2149d7787d56f9841b66cacc9061d0/lld/MachO/Writer.cpp#L524).
    	rv[6] &= 0xcf
    	rv[6] |= 0x30
    	rv[8] &= 0x3f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/custom-response.md

    # Custom Response - HTML, Stream, File, others
    
    By default, **FastAPI** will return the responses using `JSONResponse`.
    
    You can override it by returning a `Response` directly as seen in [Return a Response directly](response-directly.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top