Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for kindid (0.35 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ToolchainReportRendererTest.groovy

                "jvmName", "25.292-b01", "jvmVendor",
                "myArch"
            )
            installation.source >> "SourceSupplier"
    
            def binDir = new File(javaHome, "bin")
            if (binDir.mkdir()) {
                File javac = new File(binDir, OperatingSystem.current().getExecutableName('javac'))
                javac << 'dummy'
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

        }
    
        def "uses windows SDK using specified install dir"() {
            def dir1 = kitDir("sdk1", "10.0.10240.0")
            def dir2 = kitDir("sdk2", "10.0.10150.0")
            def dir3 = kitDir("sdk3", "10.0.10500.0")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

        }
    
        public static class InstalledSwiftc extends InstalledToolChain {
            private final File binDir;
            private final VersionNumber compilerVersion;
    
            public InstalledSwiftc(File binDir, VersionNumber compilerVersion) {
                super(ToolFamily.SWIFTC, compilerVersion);
                this.binDir = binDir;
                this.compilerVersion = compilerVersion;
            }
    
            public File tool(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  4. docs_src/path_operation_advanced_configuration/tutorial006.py

    app = FastAPI()
    
    
    def magic_data_reader(raw_body: bytes):
        return {
            "size": len(raw_body),
            "content": {
                "name": "Maaaagic",
                "price": 42,
                "description": "Just kiddin', no magic here. ✨",
            },
        }
    
    
    @app.post(
        "/items/",
        openapi_extra={
            "requestBody": {
                "content": {
                    "application/json": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:01:13 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. pkg/config/schema/codegen/templates/kind.go.tmpl

    	{{- if (eq $index 0) }}
    	{{.Resource.Identifier}} Kind = iota
    	{{- else }}
    	{{.Resource.Identifier}}
    	{{- end }}
    {{- end }}
    )
    
    func (k Kind) String() string {
    	switch k {
    {{- range .Entries }}
    	case {{.Resource.Identifier}}:
    		return "{{.Resource.Kind}}"
    {{- end }}
    	default:
    		return "Unknown"
    	}
    }
    
    func MustFromGVK(g config.GroupVersionKind) Kind {
    	switch g {
    {{- range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 862 bytes
    - Viewed (0)
  6. src/runtime/metrics/value.go

    type Value struct {
    	kind    ValueKind
    	scalar  uint64         // contains scalar values for scalar Kinds.
    	pointer unsafe.Pointer // contains non-scalar values.
    }
    
    // Kind returns the tag representing the kind of value this is.
    func (v Value) Kind() ValueKind {
    	return v.kind
    }
    
    // Uint64 returns the internal uint64 value for the metric.
    //
    // If v.Kind() != KindUint64, this method panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. release/downloadIstioCandidate.sh

    printf "\n"
    BINDIR="$(cd "$NAME/bin" && pwd)"
    printf "Next Steps:\n"
    printf "See https://istio.io/latest/docs/setup/install/ to add Istio to your Kubernetes cluster.\n"
    printf "\n"
    printf "To configure the istioctl client tool for your workstation,\n"
    printf "add the %s directory to your environment path variable with:\n" "$BINDIR"
    printf "\t export PATH=\"\$PATH:%s\"\n" "$BINDIR"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/helpers_test.go

    	"istio.io/istio/pkg/config/validation"
    )
    
    // K8SCollection1 describes the collection k8s/collection1
    var K8SCollection1 = r2.Builder{
    	Group:         "testdata.istio.io",
    	Kind:          "Kind1",
    	Plural:        "Kind1s",
    	Version:       "v1alpha1",
    	Proto:         "google.protobuf.Struct",
    	ReflectType:   reflect.TypeOf(&structpb.Struct{}).Elem(),
    	ProtoPackage:  "github.com/gogo/protobuf/types",
    	ClusterScoped: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial006.py

        assert response.status_code == 200, response.text
        assert response.json() == {
            "size": 30,
            "content": {
                "name": "Maaaagic",
                "price": 42,
                "description": "Just kiddin', no magic here. ✨",
            },
        }
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyBasePluginIntegrationTest.groovy

                    def compileGroovyDestinationDir = compileGroovy.destinationDirectory
                    def binDir = file("$buildDir/bin")
                    doLast {
                        assert mainGroovyDestDir.get().asFile == compileGroovyDestinationDir.get().asFile
                        assert mainGroovyDestDir.get().asFile == binDir
                    }
                }
            '''
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top