Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for impl (0.08 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            failure.assertHasCause("Could not download test-impl-1.3.jar (test:test:1.3)")
    
            and:
            outputContains("Transforming test-api-1.3.jar to test-api-1.3.jar.txt")
            outputContains("Transforming test-impl2-1.3.jar to test-impl2-1.3.jar.txt")
            outputContains("Transforming test-2-0.1.jar to test-2-0.1.jar.txt")
    
            when:
            m1.getArtifact(name: 'test-impl').expectGetBroken()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    const char* kPaddingValid = "VALID";
    
    #define GEN_PASS_DEF_UNIFORMQUANTIZEDSTABLEHLOTOTFLPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    class UniformQuantizedStableHloToTflPass
        : public impl::UniformQuantizedStableHloToTflPassBase<
              UniformQuantizedStableHloToTflPass> {
     private:
      void runOnOperation() override;
    };
    
    // TODO: b/323645515 - Refactor reference functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top