Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for Bind (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    func Stat(path string, edir []byte) (n int, err error) {
    	fixwd()
    	return stat(path, edir)
    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	fixwd()
    	return bind(name, old, flag)
    }
    
    //sys	mount(fd int, afd int, old string, flag int, aname string) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. docs_src/sql_databases/sql_app_py310/database.py

    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 461 bytes
    - Viewed (0)
  3. docs_src/sql_databases/sql_app_py39/database.py

    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 461 bytes
    - Viewed (0)
  4. docs_src/sql_databases/sql_app/database.py

    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Apr 05 11:53:09 UTC 2020
    - 461 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    	DMAUTH   = 0x08000000
    	DMTMP    = 0x04000000
    	DMREAD   = 0x4
    	DMWRITE  = 0x2
    	DMEXEC   = 0x1
    )
    
    const (
    	STATMAX    = 65535
    	ERRMAX     = 128
    	STATFIXLEN = 49
    )
    
    // Mount and bind flags
    const (
    	MREPL   = 0x0000
    	MBEFORE = 0x0001
    	MAFTER  = 0x0002
    	MORDER  = 0x0003
    	MCREATE = 0x0004
    	MCACHE  = 0x0010
    	MMASK   = 0x0017
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testserver/test_server.go

    	ports := []int{}
    	for i := 0; i < count; i++ {
    		l, err := net.Listen("tcp", ":0")
    		if err != nil {
    			return nil, fmt.Errorf("could not bind to a port: %v", err)
    		}
    		// It is possible but unlikely that someone else will bind this port before we get a chance to use it.
    		defer l.Close()
    		ports = append(ports, l.Addr().(*net.TCPAddr).Port)
    	}
    	return ports, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 06 11:40:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pkg/test/echo/server/instance.go

    	// Not 0.0.0.0 in case we want IPv6
    	if port == nil {
    		return "", nil
    	}
    	if _, f := s.BindLocalhostPortsMap[port.Port]; f {
    		return "localhost", nil
    	}
    	if _, f := s.BindIPPortsMap[port.Port]; !f {
    		return "", nil
    	}
    	if ip, f := os.LookupEnv("INSTANCE_IP"); f {
    		return ip, nil
    	}
    	return "", fmt.Errorf("--bind-ip set but INSTANCE_IP undefined")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- $subsets := .Subsets }}
    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeCoreModule.java

     *
     * Unless required by applicable law or agreed to in writing,
     * software distributed under the License is distributed on an
     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution.scope.internal;
    
    import javax.inject.Inject;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. docs/em/docs/deployment/server-workers.md

        * đŸ“Ĩ đŸ‘Ĩ đŸšļ‍♀ī¸ 🎓 👈 🐁 đŸ’Ē 🗄 &amp; ⚙ī¸ ⏎ī¸:
    
            ```Python
            import uvicorn.workers.UvicornWorker
            ```
    
    * `--bind`: 👉 đŸ’Ŧ 🐁 đŸ“ĸ &amp; ⛴ 👂, ⚙ī¸ ❤ (`:`) 🎏 đŸ“ĸ &amp; ⛴.
        * đŸšĨ 👆 🏃‍♂ Uvicorn 🔗, ↩ī¸ `--bind 0.0.0.0:80` (🐁 🎛) 👆 🔜 ⚙ī¸ `--host 0.0.0.0` &amp; `--port 80`.
    
    đŸ”ĸ, 👆 đŸ’Ē 👀 👈 âšĢī¸ đŸŽĻ **🕹** (🛠ī¸ 🆔) 🔠 🛠ī¸ (âšĢī¸ đŸ”ĸ).
    
    👆 đŸ’Ē 👀 👈:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top