Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for Bind (0.1 sec)

  1. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    		return nil
    	}
    	serviceExport := mcsapi.ServiceExport{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "ServiceExport",
    			APIVersion: mcs.MCSSchemeGroupVersion.String(),
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: svc.Namespace,
    			Name:      svc.Name,
    
    			// Bind the lifecycle of the ServiceExport to the Service. We do this by making the Service
    			// the "owner" of the ServiceExport resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

    import org.gradle.internal.serialize.graph.writeEnum
    import org.gradle.groovy.scripts.BasicScript
    import org.gradle.internal.metaobject.ConfigureDelegate
    
    
    fun BindingsBuilder.groovyCodecs() {
        bind(ClosureCodec)
        bind(GroovyMetaClassCodec)
    }
    
    
    internal
    object ClosureCodec : Codec<Closure<*>> {
        override suspend fun WriteContext.encode(value: Closure<*>) {
            // Write the owning script for the closure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. tensorflow/cc/training/queue_runner.cc

      counter_.reset(new BlockingCounter(runs_));
      for (const string& enqueue_op : enqueue_op_names_) {
        thread_pool_->Schedule(
            std::bind(&QueueRunner::Run, this, sess, enqueue_op));
      }
      if (coord_) {
        thread_pool_->Schedule(std::bind(&QueueRunner::Stop, this, sess));
      }
      // Wait for up to 'wait_for' milliseconds.
      if (wait_for > 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    	DefaultEtcdDataDir = "/var/lib/etcd"
    	// DefaultProxyBindAddressv4 is the default bind address when the advertise address is v4
    	DefaultProxyBindAddressv4 = "0.0.0.0"
    	// DefaultProxyBindAddressv6 is the default bind address when the advertise address is v6
    	DefaultProxyBindAddressv6 = "::"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/syscall/syscall_plan9.go

    	if fixwd(path) {
    		defer runtime.UnlockOSThread()
    	}
    	return stat(path, edir)
    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	if fixwd(name, old) {
    		defer runtime.UnlockOSThread()
    	}
    	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 Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt

        return delegate!!.isConnected
      }
    
      override fun isClosed(): Boolean {
        return delegate!!.isClosed
      }
    
      @Throws(IOException::class)
      override fun bind(localAddr: SocketAddress) {
        delegate!!.bind(localAddr)
      }
    
      @Throws(IOException::class)
      override fun connect(remoteAddr: SocketAddress) {
        delegate!!.connect(remoteAddr)
      }
    
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.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.repository.internal;
    
    import java.nio.file.Path;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSnapshotMetadata.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.internal.impl.resolver;
    
    import java.nio.file.Path;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/server-workers.md

            ```Python
            import uvicorn.workers.UvicornWorker
            ```
    
    * `--bind`: This tells Gunicorn the IP and the port to listen to, using a colon (`:`) to separate the IP and the port.
        * If you were running Uvicorn directly, instead of `--bind 0.0.0.0:80` (the Gunicorn option) you would use `--host 0.0.0.0` and `--port 80`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/net/fd_windows.go

    			la = &syscall.SockaddrInet4{}
    		case *syscall.SockaddrInet6:
    			la = &syscall.SockaddrInet6{}
    		default:
    			panic("unexpected type in connect")
    		}
    		if err := syscall.Bind(fd.pfd.Sysfd, la); err != nil {
    			return nil, os.NewSyscallError("bind", err)
    		}
    	}
    
    	var isloopback bool
    	switch ra := ra.(type) {
    	case *syscall.SockaddrInet4:
    		isloopback = ra.Addr[0] == 127
    	case *syscall.SockaddrInet6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top