Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for caseTypes (0.16 sec)

  1. src/cmd/compile/internal/types2/stmt.go

    		}
    	}
    	return
    }
    
    // TODO(gri) Once we are certain that typeHash is correct in all situations, use this version of caseTypes instead.
    // (Currently it may be possible that different types have identical names and import paths due to ImporterFrom.)
    //
    // func (check *Checker) caseTypes(x *operand, xtyp *Interface, types []syntax.Expr, seen map[string]syntax.Expr) (T Type) {
    // 	var dummy operand
    // L:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    		}
    	}
    	return
    }
    
    // TODO(gri) Once we are certain that typeHash is correct in all situations, use this version of caseTypes instead.
    // (Currently it may be possible that different types have identical names and import paths due to ImporterFrom.)
    //
    // func (check *Checker) caseTypes(x *operand, xtyp *Interface, types []ast.Expr, seen map[string]ast.Expr) (T Type) {
    // 	var dummy operand
    // L:
    // 	for _, e := range types {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/BaseTypes.kt

    import org.gradle.internal.serialize.codecs.guava.guavaTypes
    import org.gradle.internal.serialize.codecs.stdlib.stdlibTypes
    import org.gradle.internal.serialize.graph.codecs.BindingsBuilder
    
    
    internal
    fun BindingsBuilder.baseTypes() {
        stdlibTypes()
        guavaTypes()
        bind(JavaRecordCodec)
        bind(BuildIdentifierSerializer())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/context.go

    		return false
    	}
    	for i, c := range b[:len(s)] {
    		if c != s[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // caseType returns an info with only the case bits, normalized to either
    // cLower, cUpper, cTitle or cUncased.
    func (c *context) caseType() info {
    	cm := c.info & 0x7
    	if cm < 4 {
    		return cm
    	}
    	if cm >= cXORCase {
    		// xor the last bit of the rune with the case type bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

    import org.gradle.api.internal.provider.PropertyFactory
    import org.gradle.api.services.internal.BuildServiceProvider
    import org.gradle.internal.cc.impl.serialize.baseTypes
    import org.gradle.internal.serialize.codecs.core.DirectoryCodec
    import org.gradle.internal.serialize.codecs.core.DirectoryPropertyCodec
    import org.gradle.internal.serialize.codecs.core.FixedValueReplacingProviderCodec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    			continue
    		}
    		body := b.newBlock(KindSwitchCaseBody, cc)
    		var next *Block
    		for _, casetype := range cc.List {
    			next = b.newBlock(KindSwitchNextCase, cc)
    			// casetype is a type, so don't call b.add(casetype).
    			// This block logically contains a type assertion,
    			// x.(casetype), but it's unclear how to represent x.
    			_ = casetype
    			b.ifelse(body, next)
    			b.current = next
    		}
    		b.current = body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/info.go

    // only makes sense, though, if the performance and/or space penalty of using
    // the generic breaker is big. Extra data will only be needed for non-cased
    // runes, which means there are sufficient bits left in the caseType.
    // ICU prohibits breaking in such cases as well.
    
    // For the purpose of title casing we use an approximation of the Unicode Word
    // Breaking algorithm defined in Annex #29:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

        private
        val fingerprintUserTypesBindings: Bindings
    
        init {
            fun makeUserTypeBindings(providersBlock: BindingsBuilder.() -> Unit) = Bindings.of {
                unsupportedTypes()
    
                baseTypes()
    
                bind(HASHCODE_SERIALIZER)
    
                providersBlock()
    
                bind(DefaultContextAwareTaskLoggerCodec)
                bind(LoggerCodec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top