Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 455 for selectioner (0.27 sec)

  1. .idea/dictionaries/valentin.xml

          <w>pparent</w>
          <w>precheck</w>
          <w>prioritizer</w>
          <w>processings</w>
          <w>rbrace</w>
          <w>rbracket</w>
          <w>renderers</w>
          <w>rparenth</w>
          <w>selectioner</w>
          <w>smartcast</w>
          <w>summand</w>
          <w>unpluralize</w>
          <w>weighers</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 13 14:46:16 UTC 2016
    - 605 bytes
    - Viewed (0)
  2. src/go/types/selection.go

    func (s *Selection) Recv() Type { return s.recv }
    
    // Obj returns the object denoted by x.f; a *Var for
    // a field selection, and a *Func in all other cases.
    func (s *Selection) Obj() Object { return s.obj }
    
    // Type returns the type of x.f, which may be different from the type of f.
    // See Selection for more information.
    func (s *Selection) Type() Type {
    	switch s.kind {
    	case MethodVal:
    		// The type of x.f is a method with its receiver type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        // The first selection prioritizes the non-failed routes.
        val selection2 = routeSelector.next()
        assertThat(selection2.next()).isEqualTo(regularRoutes[1])
        assertThat(selection2.hasNext()).isFalse()
    
        // The second selection will contain all failed routes.
        val selection3 = routeSelector.next()
        assertThat(selection3.next()).isEqualTo(regularRoutes[0])
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/selection.go

    // previous (implicit) operations are always field selections.
    // Each element of Indices specifies an implicit field (a, b, c)
    // by its index in the struct type of the field selection operand.
    //
    // For a FieldVal operation, the final selection refers to the field
    // specified by Selection.Obj.
    //
    // For a MethodVal operation, the final selection refers to a method.
    // If the "pointerness" of the method's declared receiver does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskParserSpec.groovy

            def selection1 = new TaskSelection(':project', ':foo', asTaskSelectionResults(task, task2))
            def selection2 = new TaskSelection(':project', ':bar', asTaskSelectionResults(task3))
    
            selector.resolveTaskName(null, null, defaultBuild, 'foo') >> selection1
            selector.resolveTaskName(null, null, defaultBuild, 'bar') >> selection2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    setSelection(ranges,preventEvent){var axis,range,o=plot.getOptions();if(o.selection.mode=="y"){selection.first.x=0;selection.second.x=plot.width()}else{range=extractRange(ranges,"x");selection.first.x=range.axis.p2c(range.from);selection.second.x=range.axis.p2c(range.to)}if(o.selection.mode=="x"){selection.first.y=0;selection.second.y=plot.height()}else{range=extractRange(ranges,"y");selection.first.y=range.axis.p2c(range.from);selection.second.y=range.axis.p2c(range.to)}selection.show=true;plot.trigger...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolvingBuildTaskSchedulerSpec.groovy

            def task3 = Stub(Task)
            def selection1 = Stub(TaskSelection)
            def selection2 = Stub(TaskSelection)
    
            given:
            _ * gradle.startParameter >> startParameters
            _ * startParameters.taskRequests >> [request1, request2]
    
            def tasks1 = [task1, task2] as Set
            _ * selection1.tasks >> tasks1
    
            def tasks2 = [task3] as Set
            _ * selection2.tasks >> tasks2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. docs/fr/docs/help-fastapi.md

    Vous pouvez "watch" FastAPI dans GitHub (en cliquant sur le bouton "watch" en haut à droite) : <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">https://github.com/tiangolo/fastapi</a>. 👀
    
    Vous pouvez y sélectionner "Releases only".
    
    Ainsi, vous recevrez des notifications (dans votre courrier électronique) chaque fois qu'il y aura une nouvelle version de **FastAPI** avec des corrections de bugs et de nouvelles fonctionnalités.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifactSelector.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import javax.annotation.Nullable;
    
    /**
     * Details about an artifact selection in the context of a dependency substitution.
     *
     * Artifact selections are handy as a migration path from the Maven or Ivy ecosystem,
     * where different "variants" are actually represented as different artifacts, with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                if (selector == null) {
                    selector = Selector.open();
                }
                SelectionKey key = socket.register(selector, SelectionKey.OP_WRITE);
                // block until ready for write operations
                selector.select();
                // cancel OP_WRITE selection
                key.cancel();
                // complete cancelling key
                selector.selectNow();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top