Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,175 for Schack (0.4 sec)

  1. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    go build -trimpath -o $WORK/new/bin/go$GOEXE cmd/go &
    go build -trimpath -o $WORK/bin/check$GOEXE check.go &
    wait
    
    env TESTGOROOT=$GOROOT
    env GOROOT=
    
    # Unset GOPATH and any variables that its default may be derived from,
    # so that we can check for a spurious warning.
    env GOPATH=
    env HOME=''
    env USERPROFILE=''
    env home=''
    
    # Relocated Executable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubtypingComponent.kt

        override fun isEqualTo(first: KaType, second: KaType, errorTypePolicy: KaSubtypingErrorTypePolicy): Boolean {
            second.assertIsValidAndAccessible()
            check(first is KaFirType)
            check(second is KaFirType)
            return AbstractTypeChecker.equalTypes(
                createTypeCheckerContext(errorTypePolicy),
                first.coneType,
                second.coneType,
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testgodefs/testdata/main.go

    	// it appears to be aligned correctly.
    	bitfieldType := reflect.TypeOf(bitfields{})
    	check := func(name string) {
    		_, ok := bitfieldType.FieldByName(name)
    		if ok {
    			fmt.Fprintf(os.Stderr, "found unexpected bitfields field %s\n", name)
    			pass = false
    		}
    	}
    	check("Short1")
    	check("Short2")
    	check("Short3")
    
    	if !pass {
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    		"bug398.go",      // types2 doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    		"issue16369.go",  // types2 handles this correctly - not an issue
    		"issue18459.go",  // types2 doesn't check validity of //go:xxx directives
    		"issue18882.go",  // types2 doesn't check validity of //go:xxx directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

                function.annotations.any { it is Builder } -> {
                    check(inType != null)
                    FunctionSemanticsInternal.DefaultBuilder(returnTypeClassifier.toDataTypeRefOrError())
                }
    
                function.annotations.any { it is Adding } -> {
                    check(inType != null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. schema/constraint_test.go

    	Name  string `gorm:"check:name_checker,name <> 'jinzhu'"`
    	Name2 string `gorm:"check:name <> 'jinzhu'"`
    	Name3 string `gorm:"check:,name <> 'jinzhu'"`
    }
    
    func TestParseCheck(t *testing.T) {
    	user, err := schema.Parse(&UserCheck{}, &sync.Map{}, schema.NamingStrategy{})
    	if err != nil {
    		t.Fatalf("failed to parse user check, got error %v", err)
    	}
    
    	results := map[string]schema.CheckConstraint{
    		"name_checker": {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_perm.txt

    [GOOS:plan9] skip   # Might not have Unix-style directory permissions.
    
    chmod 000 noread
    
    # Check explicit paths.
    
    ! go list ./noread
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    
    ! go list example.com/noread
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    
    # Check filesystem-relative patterns.
    
    ! go list ./...
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/SmallCharMatcher.java

        int index = startingIndex;
        do {
          if (table[index] == 0) { // Check for empty.
            return false;
          } else if (table[index] == c) { // Check for match.
            return true;
          } else { // Linear probing.
            index = (index + 1) & mask;
          }
          // Check to see if we wrapped around the whole table.
        } while (index != startingIndex);
        return false;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/conditionCheck.kt

    fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
    
    fun test(words: Array<String>) {
        if (<expr>words.check { it.length == 5 }</expr>) {
            consume("OK")
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 207 bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/stackcheck.go

    	for _, s := range ctxt.Textp {
    		if sc.check(s) > limit {
    			failed = append(failed, s)
    		}
    	}
    
    	if len(failed) > 0 {
    		// Something was over-limit, so now we do the more
    		// expensive work to report a good error. First, for
    		// the over-limit functions, redo the stack check but
    		// record the graph this time.
    		sc = newStackCheck(ctxt, true)
    		for _, s := range failed {
    			sc.check(s)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top