Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for appengine (0.14 sec)

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

    # explicit get should report errors about bad names
    ! go get appengine
    stderr '^go: malformed module path "appengine": missing dot in first path element$'
    ! go get x/y.z
    stderr 'malformed module path "x/y.z": missing dot in first path element'
    
    
    # 'go list -m' should report errors about module names, never GOROOT.
    ! go list -m -versions appengine
    stderr 'malformed module path "appengine": missing dot in first path element'
    ! go list -m -versions x/y.z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. proguard/concurrent.pro

      <fields>;
    }
    
    # AbstractFuture uses this
    -dontwarn sun.misc.Unsafe
    
    # MoreExecutors references AppEngine
    -dontnote com.google.appengine.api.ThreadManager
    -keep class com.google.appengine.api.ThreadManager {
      static *** currentRequestThreadFactory(...);
    }
    -dontnote com.google.apphosting.api.ApiProxy
    -keep class com.google.apphosting.api.ApiProxy {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. cmd/is-dir-empty_linux.go

    //go:build linux && !appengine
    // +build linux,!appengine
    
    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 15:17:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor.txt

    )
    
    func TestDir(t *testing.T) {
    	if _, err := os.Stat("./testdata/1"); err != nil {
    		t.Fatalf("testdata: %v", err)
    	}
    }
    -- a/testdata/1 --
    -- appengine.go --
    // +build appengine
    
    package m
    
    import _ "appengine"
    import _ "appengine/datastore"
    -- mypkg/go.mod --
    module me
    -- mypkg/mydir/d.go --
    package mydir
    -- subdir/v1_test.go --
    package m
    
    import _ "mysite/myname/mypkg/mydir"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/pprof/readlineui.go

    // This file contains a driver.UI implementation
    // that provides the readline functionality if possible.
    
    //go:build (darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows) && !appengine && !android
    
    package main
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"strings"
    
    	"github.com/google/pprof/driver"
    	"golang.org/x/term"
    )
    
    func init() {
    	newUI = newReadlineUI
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. cmd/os_unix.go

    //go:build (linux && !appengine) || darwin || freebsd || netbsd || openbsd
    // +build linux,!appengine darwin freebsd netbsd openbsd
    
    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substututorFactory/AbstractSubstitutorBuilderTest.kt

                prettyPrint {
                    appendLine("${KtDeclaration::class.simpleName}: ${declaration::class.simpleName}")
    
                    appendLine("Symbol:")
                    appendLine(symbol.render(KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES))
    
                    appendLine()
    
                    appendLine("Substitutor:")
                    appendLine(stringRepresentation(substitutor))
    
                    appendLine()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/importOptimizer/AbstractAnalysisApiImportOptimizerTest.kt

                    .mapValues { (_, importedNames) -> importedNames.sorted() }
    
                appendLine("USED DECLARATIONS:")
                for ((path, elements) in sortedUsedDeclarations) {
                    appendLine()
                    appendLine("Declaration: $path")
                    appendLine("By names: $elements")
                }
    
                appendLine()
    
                val sortedUnresolvedNames = importsAnalysis.unresolvedNames.sorted()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureSubstitutionTest.kt

                prettyPrint {
                    appendLine("${KtDeclaration::class.simpleName}: ${declaration::class.simpleName}")
    
                    appendLine("Symbol:")
                    appendLine(symbol.render(KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES))
    
                    appendLine()
    
                    appendLine("Signature before substitution:")
                    appendLine(stringRepresentation(signatureBeforeSubstitution))
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolInfoProvider/AbstractAnnotationApplicableTargetsTest.kt

                buildString {
                    appendLine("${KtAnnotationEntry::class.simpleName}: ${annotationEntry.text}")
                    appendLine()
                    appendLine("Resolved annotation symbol:")
                    appendLine(annotationClassSymbol.render(KtDeclarationRendererForDebug.WITH_QUALIFIED_NAMES))
                    appendLine()
                    appendLine("Applicable targets: $applicableTargetsInOrder")
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top