Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,351 for a$ (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            outputContains("creating model with parameter='fetch2' for project ':a'")
    
            and:
            model1.keySet() ==~ [":", ":a"]
            model1.values().every { it.size() == 2 }
    
            model1[":"][0].message == "fetch1 It works from project :"
            model1[":"][1].message == "fetch2 It works from project :"
            model1[":a"][0].message == "fetch1 It works from project :a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	return fmt.Sprintf("%s@%s", pass.Analyzer.Name, pass.Pkg.Path())
    }
    
    // A Fact is an intermediate fact produced during analysis.
    //
    // Each fact is associated with a named declaration (a types.Object) or
    // with a package as a whole. A single object or package may have
    // multiple associated facts, but only one of any particular fact type.
    //
    // A Fact represents a predicate such as "never returns", but does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

    // tf_mlrt.tf_await returns a tensorflow Tensor. It is a fake op that is only
    // used during parallelization and has no runtime implementation.
    def TFAwaitOp: TensorflowMlrt_Op<"tf_await", [Pure, TFRT_CostFunctionInterface, TFRT_FixedCost<1>]> {
      let summary = "Await a tensor from a !mlrt.future";
    
      let description = [{
        Await a tensor from a !mlrt.future.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. docs/en/overrides/main.html

            <span class="sponsor-badge">sponsor</span>
            <img class="sponsor-image" src="/img/sponsors/porter-banner.png" />
          </a>
        </div>
        <div class="item">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/typeAliases1.23b.go

    	a.p = "foo"
    	a.q = 42
    }
    
    // A generic alias may refer to another generic alias.
    type B[P any] = A[P]
    
    func _(a B[string]) {
    	a.p = "foo"
    	a.q = 42
    	// error messages print the instantiated alias type
    	a.r /* ERROR "a.r undefined (type B[string] has no field or method r)" */ = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kube/krt/internal.go

    func getLabels(a any) map[string]string {
    	al, ok := a.(Labeler)
    	if ok {
    		return al.GetLabels()
    	}
    	pal, ok := any(&a).(Labeler)
    	if ok {
    		return pal.GetLabels()
    	}
    	ak, ok := a.(metav1.Object)
    	if ok {
    		return ak.GetLabels()
    	}
    	ac, ok := a.(config.Config)
    	if ok {
    		return ac.Labels
    	}
    	panic(fmt.Sprintf("No Labels, got %T", a))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

            def inc2 = multiProjectBuildInSubFolder("includedBuild2", ["a", "b", "c"])
            def workspace = eclipseWorkspace([
                project("root", projectDir), gradleProject("a"), project("explicitName", file("b")),
                externalProject("root-a"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/handling-errors.md

    You can add custom exception handlers with <a href="https://www.starlette.io/exceptions/" class="external-link" target="_blank">the same exception utilities from Starlette</a>.
    
    Let's say you have a custom exception `UnicornException` that you (or a library you use) might `raise`.
    
    And you want to handle this exception globally with FastAPI.
    
    You could add a custom exception handler with `@app.exception_handler()`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    		remoteKubeClientGetter: remoteKubeClientGetter,
    	}
    }
    
    func (a *KubeJWTAuthenticator) AuthenticatorType() string {
    	return KubeJWTAuthenticatorType
    }
    
    func isAllowedKubernetesAudience(a string) bool {
    	// We do not use url.Parse() as it *requires* the protocol.
    	a = strings.TrimPrefix(a, "https://")
    	a = strings.TrimPrefix(a, "http://")
    	return strings.HasPrefix(a, "kubernetes.default.svc")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work.txt

    env GOWORK=
    go build -n -o foo foo.go
    
    -- go.work.dup --
    go 1.18
    
    use (
    	a
    	b
    	../src/a
    )
    -- go.work.want --
    go $goversion
    
    use (
    	./a
    	./b
    )
    -- go.work.d --
    go 1.18
    
    use (
    	a
    	b
    	d
    )
    -- a/go.mod --
    
    module example.com/a
    
    -- a/a.go --
    package a
    
    import "fmt"
    import "rsc.io/quote"
    
    func HelloFromA() {
    	fmt.Println(quote.Hello())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top