Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 247 for appengine (0.13 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. src/cmd/go/testdata/vendormod.txt

    	"testing"
    )
    
    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"
    -- go.mod --
    module m
    
    require (
    	a v1.0.0
    	mysite/myname/mypkg v1.0.0
    	w v1.0.0 // indirect
    	x v1.0.0
    	y v1.0.0
    	z v1.0.0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. cmd/os-dirent_ino.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    //go:build (linux || darwin) && !appengine
    // +build linux darwin
    // +build !appengine
    
    package cmd
    
    import "syscall"
    
    func direntInode(dirent *syscall.Dirent) uint64 {
    	return dirent.Ino
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 953 bytes
    - Viewed (0)
  5. cmd/os-dirent_namelen_linux.go

    //go:build linux && !appengine
    // +build linux,!appengine
    
    // 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
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/golang.org_x_internal_v0.1.0.txt

    module golang.org/x/internal
    -- subtle/aliasing.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // +build !appengine
    
    // This is a tiny version of golang.org/x/crypto/internal/subtle.
    
    package subtle
    
    import "unsafe"
    
    func AnyOverlap(x, y []byte) bool {
    	return len(x) > 0 && len(y) > 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 01:58:53 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/util/concurrent/MoreExecutors.java

            directExecutor());
        return future;
      }
    
      /**
       * Returns a default thread factory used to create new threads.
       *
       * <p>When running on AppEngine with access to <a
       * href="https://cloud.google.com/appengine/docs/standard/java/javadoc/">AppEngine legacy
       * APIs</a>, this method returns {@code ThreadManager.currentRequestThreadFactory()}. Otherwise,
       * it returns {@link Executors#defaultThreadFactory()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

            directExecutor());
        return future;
      }
    
      /**
       * Returns a default thread factory used to create new threads.
       *
       * <p>When running on AppEngine with access to <a
       * href="https://cloud.google.com/appengine/docs/standard/java/javadoc/">AppEngine legacy
       * APIs</a>, this method returns {@code ThreadManager.currentRequestThreadFactory()}. Otherwise,
       * it returns {@link Executors#defaultThreadFactory()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top