Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Bind (0.46 sec)

  1. samples/helloworld/src/Dockerfile

    #
    #   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.
    
    FROM python:3.12.1-slim
    
    WORKDIR /opt/microservices
    COPY app.py ./
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

        buildServiceProviderCodec: Codec<BuildServiceProvider<*, *>>,
        flowProvidersCodec: Codec<BuildWorkResultProvider>
    ) = Bindings.of {
        bind(valueSourceProviderCodec)
        bind(buildServiceProviderCodec)
        bind(flowProvidersCodec)
        bind(BeanCodec)
    }.build()
    
    
    /**
     * This is not used directly when encoding or decoding the object graph. This codec takes care of substituting a provider whose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      descriptor's requiredConnectivity field.
    
      * If <<<(offline == true) && (requiresOnline != true)>>>, bind
        the mojo to the lifecycle.
    
        In this case, the client is <<offline>>, and the mojo does not require
        online status.
    
      * If <<<(offline == false) && (requiresOnline == true)>>>, bind
        the mojo to the lifecycle.
    
        In this case, the client is <<online>>, and the mojo either requires
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "node": ">=8"
          }
        },
        "node_modules/call-bind": {
          "version": "1.0.2",
          "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
          "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
          "dev": true,
          "dependencies": {
            "function-bind": "^1.1.1",
            "get-intrinsic": "^1.0.2"
          },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/phases/controlplane/manifests_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    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 controlplane
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"reflect"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. pkg/registry/core/serviceaccount/storage/token.go

    		node   *api.Node
    		secret *api.Secret
    	)
    
    	if ref := req.Spec.BoundObjectRef; ref != nil {
    		var uid types.UID
    
    		gvk := schema.FromAPIVersionAndKind(ref.APIVersion, ref.Kind)
    		switch {
    		case gvk.Group == "" && gvk.Kind == "Pod":
    			newCtx := newContext(ctx, "pods", ref.Name, namespace, gvk)
    			podObj, err := r.pods.Get(newCtx, ref.Name, &metav1.GetOptions{})
    			if err != nil {
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top