Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for impl_5 (0.18 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf2:1.0
    \\--- org:leaf1:1.0
         +--- conf
         \\--- org:leaf2:1.0 (*)
    """
        }
    
        def "deals with dependency cycle to root"() {
            given:
            createDirs("impl")
            settingsFile << "include 'impl'; rootProject.name='root'"
    
            buildFile << """
                allprojects {
                    apply plugin: 'java-library'
                    group = 'org.foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	}
    	var b [1024]byte // makes frame about 1KB
    	useStack(n - 1 + int(b[99]))
    }
    
    type Impl struct{}
    
    func (Impl) F() {}
    
    func TestValueString(t *testing.T) {
    	rv := ValueOf(Impl{})
    	if rv.String() != "<reflect_test.Impl Value>" {
    		t.Errorf("ValueOf(Impl{}).String() = %q, want %q", rv.String(), "<reflect_test.Impl Value>")
    	}
    
    	method := rv.Method(0)
    	if method.String() != "<func() Value>" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

            TF_RETURN_IF_ERROR(CopyGraph(
                &params->cond_graph->graph, &parent->graph, &parent->refiner,
                params->cond_inputs, inputs, scope.impl()->name(),
                scope.impl()->control_deps(), &params->cond_output,
                /* nreturn_nodes */ 1, &cond_output));
            *output = cond_output[0];
            return absl::OkStatus();
          };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

            }
    
            @Override
            public void notifyNewValue(Object newValue) {}
          };
    
      /** Singleton placeholder that indicates a value is being loaded. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <K, V> ValueReference<K, V> unset() {
        return (ValueReference<K, V>) UNSET;
      }
    
      private enum NullEntry implements ReferenceEntry<Object, Object> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

            }
    
            @Override
            public void notifyNewValue(Object newValue) {}
          };
    
      /** Singleton placeholder that indicates a value is being loaded. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <K, V> ValueReference<K, V> unset() {
        return (ValueReference<K, V>) UNSET;
      }
    
      private enum NullEntry implements ReferenceEntry<Object, Object> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          }
        }
      }
    
      /**
       * This test checks whether connections are gzipped by default. This behavior in not required by
       * the API, so a failure of this test does not imply a bug in the implementation.
       */
      @Test
      fun gzipEncodingEnabledByDefault() {
        server.enqueue(
          MockResponse.Builder()
            .body(gzip("ABCABCABC"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      for (int i = 0; i < shape.getRank(); ++i) {
        if (i != elems[i]) return false;
      }
      return true;
    }
    
    using ::llvm::cast;
    
    // Optimize TFLite operations in functions.
    class OptimizePass : public impl::OptimizePassBase<OptimizePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizePass)
    
      OptimizePass() = default;
      OptimizePass(const OptimizePass &) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.diagnostics
    
    import com.intellij.psi.PsiElement
    import com.intellij.psi.impl.source.tree.LeafPsiElement
    import org.jetbrains.kotlin.KtPsiSourceElement
    import org.jetbrains.kotlin.diagnostics.KtPsiDiagnostic
    import org.jetbrains.kotlin.fir.analysis.diagnostics.FirErrors
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 210.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.diagnostics
    
    import com.intellij.psi.PsiElement
    import com.intellij.psi.impl.source.tree.LeafPsiElement
    import org.jetbrains.kotlin.analysis.api.diagnostics.KaDiagnosticWithPsi
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaClassLikeSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    namespace odml {
    namespace {
    
    #define DEBUG_TYPE "tf-legalize-hlo"
    
    #define GEN_PASS_DEF_LEGALIZEHLOTOTFPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    class LegalizeHloToTf : public impl::LegalizeHloToTfPassBase<LegalizeHloToTf> {
      /// Performs the legalization to the TF dialect.
      void runOnOperation() override;
    };
    
    using mhlo::DotDimensionNumbersAttr;
    
    // Replaces `region`'s terminator to TF::Yield.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top