Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for appengine (0.21 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. hack/unwanted-dependencies.json

          "golang.org/x/exp": "This subrepository holds experimental and deprecated packages",
          "golang.org/x/lint": "unmaintained, archive mode",
          "google.golang.org/api": "cloud dependency",
          "google.golang.org/appengine": "cloud dependency",
          "google.golang.org/genproto": "refer to #113366",
          "gopkg.in/fsnotify.v1": "obsolete, use github.com/fsnotify/fsnotify",
          "k8s.io/klog": "we have switched to klog v2, so avoid klog v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. 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)
Back to top