Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 505 for selectfont (0.2 sec)

  1. 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)
  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. 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)
  4. 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)
  5. src/cmd/cgo/internal/test/test.go

    	}
    	if C.common != 123 {
    		t.Errorf("common: %v (expected 123)", C.common)
    	}
    }
    
    // issue 5227
    
    func test5227(t *testing.T) {
    	C.init()
    }
    
    func selectfont() C.Fontinfo {
    	return C.SansTypeface
    }
    
    // issue 5242
    
    func test5242(t *testing.T) {
    	if got := C.issue5242(C.foo{}, C.bar{}); got != 5242 {
    		t.Errorf("got %v", got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/types2/self_test.go

    				Types:      make(map[syntax.Expr]TypeAndValue),
    				Defs:       make(map[*syntax.Name]Object),
    				Uses:       make(map[*syntax.Name]Object),
    				Implicits:  make(map[syntax.Node]Object),
    				Selections: make(map[*syntax.SelectorExpr]*Selection),
    				Scopes:     make(map[syntax.Node]*Scope),
    			}
    		}
    		if _, err := conf.Check(path, files, info); err != nil {
    			b.Fatal(err)
    		}
    	}
    	b.StopTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    	"Skipf",
    	"SkipNow",
    }
    
    // forbiddenMethod decomposes a call x.m() into (x, x.m, m) where
    // x is a variable, x.m is a selection, and m is the static callee m.
    // Returns (nil, nil, nil) if call is not of this form.
    func forbiddenMethod(info *types.Info, call *ast.CallExpr) (*types.Var, *types.Selection, *types.Func) {
    	// Compare to typeutil.StaticCallee.
    	fun := astutil.Unparen(call.Fun)
    	selExpr, ok := fun.(*ast.SelectorExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top