Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for swiftc (0.16 sec)

  1. .space/CODEOWNERS

    /kotlin-native/tools/**/*.gradle.kts "Kotlin Native"
    /kotlin-native/performance/**/*.gradle "Kotlin Native"
    /kotlin-native/performance/**/*.gradle.kts "Kotlin Native"
    /native/native.tests/*.gradle.kts "Kotlin Native"
    /native/swift/**/*.gradle.kts "Kotlin Native"
    .gitignore "Kotlin Build Infrastructure"
    gradlew "Kotlin Build Infrastructure"
    gradlew.bat "Kotlin Build Infrastructure"
    
    /gradle.properties "Kotlin Build Infrastructure"
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  2. src/cmd/compile/internal/types2/infer.go

    			// If there is a core term (i.e., a core type with tilde information)
    			// unify the type parameter with the core type.
    			if core != nil {
    				// A type parameter can be unified with its core type in two cases.
    				switch {
    				case tx != nil:
    					// The corresponding type argument tx is known. There are 2 cases:
    					// 1) If the core type has a tilde, per spec requirement for tilde
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/server.go

    )
    
    func negotiateMetricsFormat(contentType string) expfmt.Format {
    	mediaType, params, err := mime.ParseMediaType(contentType)
    	if err == nil && mediaType == expfmt.OpenMetricsType {
    		switch params["version"] {
    		case expfmt.OpenMetricsVersion_1_0_0:
    			return FmtOpenMetrics_1_0_0
    		case expfmt.OpenMetricsVersion_0_0_1, "":
    			return FmtOpenMetrics_0_0_1
    		}
    	}
    	return FmtText
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  4. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	} else {
    		se.Location = networking.ServiceEntry_MESH_INTERNAL
    	}
    
    	// Reverse in convertServices. Note that enum values are different
    	var resolution networking.ServiceEntry_Resolution
    	switch svc.Resolution {
    	case model.Passthrough: // 2
    		resolution = networking.ServiceEntry_NONE // 0
    	case model.DNSLB: // 1
    		resolution = networking.ServiceEntry_DNS // 2
    	case model.DNSRoundRobinLB: // 3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/net/http/clientserver_test.go

    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case func(*Transport):
    			transportFuncs = append(transportFuncs, opt)
    		case func(*httptest.Server):
    			opt(cst.ts)
    		default:
    			t.Fatalf("unhandled option type %T", opt)
    		}
    	}
    
    	if cst.ts.Config.ErrorLog == nil {
    		cst.ts.Config.ErrorLog = log.New(testLogWriter{t}, "", 0)
    	}
    
    	switch mode {
    	case http1Mode:
    		cst.ts.Start()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/read.go

    	defer unprotect(protect(), &err)
    
    	ctxt := (*Context)(&bctxt)
    
    	p = &build.Package{}
    
    	p.ImportPath = "."
    	p.Dir = filepath.Join(rp.modroot, rp.dir)
    
    	var pkgerr error
    	switch ctxt.Compiler {
    	case "gccgo", "gc":
    	default:
    		// Save error for end of function.
    		pkgerr = fmt.Errorf("import %q: unknown compiler %q", p.Dir, ctxt.Compiler)
    	}
    
    	if p.Dir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/types.go

    	// scheduling of the pod.
    	QueueSkip QueueingHint = iota
    
    	// Queue implies that the Pod may be schedulable by the event.
    	Queue
    )
    
    func (s QueueingHint) String() string {
    	switch s {
    	case QueueSkip:
    		return "QueueSkip"
    	case Queue:
    		return "Queue"
    	}
    	return ""
    }
    
    // ClusterEvent abstracts how a system resource's state gets changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_messages_test.go

    				// their original representation, for later use in the handshake
    				// transcript. In order to prevent DeepEqual from failing since
    				// we didn't create the original message via unmarshalling, nil
    				// the field.
    				switch t := m.(type) {
    				case *clientHelloMsg:
    					t.original = nil
    				case *serverHelloMsg:
    					t.original = nil
    				}
    
    				if !reflect.DeepEqual(m1, m) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Xor16", argLength: 2, commutative: true},
    	{name: "Xor32", argLength: 2, commutative: true},
    	{name: "Xor64", argLength: 2, commutative: true},
    
    	// For shifts, AxB means the shifted value has A bits and the shift amount has B bits.
    	// Shift amounts are considered unsigned.
    	// If arg1 is known to be nonnegative and less than the number of bits in arg0,
    	// then auxInt may be set to 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    .orElse($orElseArgument)
                tasks.register<PrintString>("printString") {
                    string.set(stringProvider)
                }
            """
            def printString = { string ->
                switch (operator) {
                    case 'systemProperty':
                        configurationCacheRun "printString", "-Dstring=$string"
                        break
                    case 'environmentVariable':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top