Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 200 for emberi (0.1 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>+10</timezone>
        </developer>
        <developer>
          <id>evenisse</id>
          <name>Emmanuel Venisse</name>
          <email>******@****.***</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>+1</timezone>
        </developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        linked_ptr_internal const* p = ptr;
        while (p->next_ != ptr) p = p->next_;
        p->next_ = this;
        next_ = ptr;
      }
    
      // Leave whatever circle we're part of.  Returns true if we were the
      // last member of the circle.  Once this is done, you can join() another.
      bool depart()
          GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) {
        MutexLock lock(&g_linked_ptr_mutex);
    
        if (next_ == this) return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/union.go

    				case t.typ == universeComparable.Type():
    					check.error(tlist[i], InvalidUnion, "cannot use comparable in union")
    				case tset.comparable:
    					check.errorf(tlist[i], InvalidUnion, "cannot use %s in union (%s embeds comparable)", t, t)
    				}
    				continue // terms with interface types are not subject to the no-overlap rule
    			}
    
    			// Report overlapping (non-disjoint) terms such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessorTest.groovy

            def annotation = Stub(AnnotationMirror)
            def member = Stub(ExecutableElement)
            def userText = "foo"
            def completion = Completions.of("bar")
    
            when:
            def completions = tracker.getCompletions(element, annotation, member, userText)
    
            then:
            1 * delegate.getCompletions(element, annotation, member, userText) >> {
                simulateWorkWithDuration(11)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/signatureSubstitution/FirIdeNormalAnalysisSourceModuleAnalysisApiSignatureContractsTestGenerated.java

      }
    
      @Test
      @TestMetadata("members.kt")
      public void testMembers() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/signatureContracts/members.kt");
      }
    
      @Test
      @TestMetadata("topLevel.kt")
      public void testTopLevel() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow::quantization {
    
    // Declares pure virtual member functions for a python-side derived class to
    // override. This allows calling python implementations from the C++ layer.
    // Member functions should be pure not stateful; they should not access or rely
    // on member fields.
    class PyFunctionLibrary {
     public:
      virtual ~PyFunctionLibrary() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/kotlin/Module.md

    All members of this package are implicitly imported and readily available in `.gradle.kts` scripts in addition to the Java API <a href="../userguide/writing_build_scripts.html#script-default-imports">default imports</a>.
    
    # Package org.gradle.kotlin.dsl
    
    The `org.gradle.kotlin.dsl` package contains the Gradle Kotlin DSL public API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/runtime/proflabel.go

    package runtime
    
    import "unsafe"
    
    var labelSync uintptr
    
    // runtime_setProfLabel should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/localsession
    //   - github.com/DataDog/datadog-agent
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        linked_ptr_internal const* p = ptr;
        while (p->next_ != ptr) p = p->next_;
        p->next_ = this;
        next_ = ptr;
      }
    
      // Leave whatever circle we're part of.  Returns true if we were the
      // last member of the circle.  Once this is done, you can join() another.
      bool depart()
          GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) {
        MutexLock lock(&g_linked_ptr_mutex);
    
        if (next_ == this) return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/DelegatingProcessor.java

        }
    
        @Override
        public Iterable<? extends Completion> getCompletions(Element element, AnnotationMirror annotation, ExecutableElement member, String userText) {
            return delegate.getCompletions(element, annotation, member, userText);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top