Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,721 for extar (0.04 sec)

  1. src/cmd/compile/internal/types/type.go

    	}
    	nt := *t
    	// copy any *T Extra fields, to avoid aliasing
    	switch t.kind {
    	case TMAP:
    		x := *t.extra.(*Map)
    		nt.extra = &x
    	case TFORW:
    		x := *t.extra.(*Forward)
    		nt.extra = &x
    	case TFUNC:
    		x := *t.extra.(*Func)
    		nt.extra = &x
    	case TSTRUCT:
    		x := *t.extra.(*Struct)
    		nt.extra = &x
    	case TINTER:
    		x := *t.extra.(*Interface)
    		nt.extra = &x
    	case TCHAN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/constdecl.go

    const _ /* ERROR "missing init expr for _" */
    const _ = 1, 2 /* ERROR "extra init expr 2" */
    
    const _ /* ERROR "missing init expr for _" */ int
    const _ int = 1, 2 /* ERROR "extra init expr 2" */
    
    const (
    	_ /* ERROR "missing init expr for _" */
    	_ = 1, 2 /* ERROR "extra init expr 2" */
    
    	_ /* ERROR "missing init expr for _" */ int
    	_ int = 1, 2 /* ERROR "extra init expr 2" */
    )
    
    const (
    	_ = 1
    	_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tests/test_openapi_query_parameter_extension.py

            "parameters": [
                {
                    "required": False,
                    "schema": {"title": "Extra Param 1"},
                    "name": "extra_param_1",
                    "in": "query",
                },
                {
                    "required": True,
                    "schema": {"title": "Extra Param 2"},
                    "name": "extra_param_2",
                    "in": "query",
                },
            ]
        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller_test.go

    			cm:   defaultConfigMap(t, []string{"user-val"}, []string{"group-val"}, []string{"extra-val"}, []string{"names-val"}),
    			expectedHeader: expectedHeadersHolder{
    				usernameHeaders:     []string{"user-val"},
    				groupHeaders:        []string{"group-val"},
    				extraHeaderPrefixes: []string{"extra-val"},
    				allowedClientNames:  []string{"names-val"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesPostProcessor.java

            CallableOwnerInfo owner = new CallableOwnerInfo(extra.ownerType, false);
            String methodName = extra.methodName;
            return new CallableInfoImpl(CallableKindInfo.STATIC_METHOD, owner, methodName, originalInfo.getReturnType(), modifiedParameters(originalInfo.getParameters()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/tasks/kotlin/build.gradle.kts

    plugins {
        signing
    }
    
    // Typically set in ~/.gradle/gradle.properties
    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-task[]
    tasks.register<Zip>("stuffZip") {
        archiveBaseName = "stuff"
        from("src/stuff")
    }
    
    signing {
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsDslIntegrationSpec.groovy

            buildscript {
                settings.extra["aValue"] = "hello"
    
                assert(settings.extra["aValue"] == "hello") {
                    "Can access inside buildscript"
                }
    
                val hamlet by settings.extra {
                    "To be or not to be"
                }
    
                assert(hamlet == "To be or not to be") {
                    "Can access inside buildscript"
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/savedir.go

    //go:build ignore
    // +build ignore
    
    // Savedir archives a directory tree as a txtar archive printed to standard output.
    //
    // Usage:
    //
    //	go run savedir.go /path/to/dir >saved.txt
    //
    // Typically the tree is later extracted during a test with tg.extract("testdata/saved.txt").
    package main
    
    import (
    	"cmd/go/internal/str"
    	"flag"
    	"fmt"
    	"internal/txtar"
    	"io/fs"
    	"log"
    	"os"
    	"path/filepath"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/compress/gzip/gzip_test.go

    		t.Fatalf("payload is %q, want %q", string(b), "payload")
    	}
    	if r.Comment != "comment" {
    		t.Fatalf("comment is %q, want %q", r.Comment, "comment")
    	}
    	if string(r.Extra) != "extra" {
    		t.Fatalf("extra is %q, want %q", r.Extra, "extra")
    	}
    	if r.ModTime.Unix() != 1e8 {
    		t.Fatalf("mtime is %d, want %d", r.ModTime.Unix(), uint32(1e8))
    	}
    	if r.Name != "name" {
    		t.Fatalf("name is %q, want %q", r.Name, "name")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

                                    homepage = 'http://www.example.com/library'
                                }
                                extraInfo 'http://my.extra.info1', 'foo', 'fooValue'
                                extraInfo 'http://my.extra.info2', 'bar', 'barValue'
                                withXml {
                                    asNode().info[0].@resolver = 'test'
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top