Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 301 for inter (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // formed are pruned. If the child island inner ops consume the parent island
    // control result, the child island inner ops will have that respective control
    // input pruned. Results of the parent island that are consumed by the child
    // island are replaced by the respective inner ops result from the parent
    // island.
    void GetNewIslandResultsAndForwardResults(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/encoding/xml/xml_test.go

    	EndElement{Name{"", "goodbye"}},
    	CharData("\n  "),
    	StartElement{Name{"", "outer"}, []Attr{{Name{"foo", "attr"}, "value"}, {Name{"xmlns", "tag"}, "ns4"}}},
    	CharData("\n    "),
    	StartElement{Name{"", "inner"}, []Attr{}},
    	EndElement{Name{"", "inner"}},
    	CharData("\n  "),
    	EndElement{Name{"", "outer"}},
    	CharData("\n  "),
    	StartElement{Name{"tag", "name"}, []Attr{}},
    	CharData("\n    "),
    	CharData("Some text here."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                withArgument("-Dorg.gradle.configuration-cache.internal.load-after-store=true")
            }
    
            createDir("include") {
                dir("inner-include") {
                    file("settings.gradle") << """
                        rootProject.name = "inner-include"
                        include "child"
                    """
                    defineTaskInSettings(file("settings.gradle"))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. tensorflow/c/while_loop_test.cc

      // Create outer body graph
      // Init inner graph
      TF_Output inner_inputs[] = {params_->body_inputs[0], params_->body_inputs[1]};
      TF_WhileParams inner_params =
          TF_NewWhile(params_->body_graph, inner_inputs, 2, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      inner_params.name = "inner_loop";
    
      // Create inner cond graph
      TF_Operation* three = ScalarConst(3, inner_params.cond_graph, s_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                    }
                }
            }
            // Bind inner classes
            for (Class<?> inner : key.getRawType().getDeclaredClasses()) {
                boolean hasQualifier = Stream.of(inner.getAnnotations())
                        .anyMatch(ann -> ann.annotationType().isAnnotationPresent(Qualifier.class));
                if (hasQualifier) {
                    bindImplicit(inner);
                }
            }
            // Bind inner providers
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

            else
                input.invoke()
    
        /**
         * Wraps an inner closeable into an outer closeable, while ensuring that
         * if the wrapper function fails, the inner closeable is closed before
         * the exception is thrown.
         *
         * @param innerSupplier the supplier that produces the inner closeable that is to be safely wrapped
         * @param unsafeWrapper a wrapping function that is potentially unsafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            fun illegalStateFor(operation: String): Nothing = throw IllegalStateException(
                "'$operation' is illegal while in '${javaClass.simpleName}' state."
            )
        }
    
        private
        inner class Idle : WritingState() {
            override fun maybeStart(buildScopedSpoolFile: StateFile, projectScopedSpoolFile: StateFile, writeContextForOutputStream: (StateFile) -> DefaultWriteContext): WritingState {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        if (auto variant = dyn_cast<TF::VariantType>(elementType)) {
          ArrayRef<TensorType> sub = variant.getSubtypes();
          if (sub.size() == 1) {
            auto inner = sub[0];
            if (!isa<TF::VariantType>(inner)) {
              newType = inner;
            }
          }
        }
        if (!newType) {
          return failure();
        }
        rewriter.replaceOpWithNewOp<UnrealizedConversionCastOp>(op, newType,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. .teamcity/subprojects.json

        "path": "subprojects/distributions-full",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "distributions-integ-tests",
        "path": "testing/distributions-integ-tests",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "distributions-jvm",
        "path": "platforms/jvm/distributions-jvm",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *
         * ```kotlin
         * abstract class A {
         *     class C1
         *     inner class D1
         *     object O1
         *
         *     // There is no way to declare a static callable in an abstract class, as only enum classes define additional static callables.
         * }
         *
         * class B : A() {
         *     class C2
         *     inner class D2
         *     object O2
         *     companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top