Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for Bind (1.74 sec)

  1. pkg/proxy/apis/config/types.go

    	// on, defaulting to "127.0.0.1:10249" (if bindAddress is unset or IPv4), or
    	// "[::1]:10249" (if bindAddress is IPv6). (Set to "0.0.0.0:10249" / "[::]:10249"
    	// to bind on all interfaces.)
    	MetricsBindAddress string
    	// bindAddressHardFail, if true, tells kube-proxy to treat failure to bind to a
    	// port as fatal and exit
    	BindAddressHardFail bool
    	// enableProfiling enables profiling via web interface on /debug/pprof handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/LocalSnapshotMetadata.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.io.File;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				Bind:  "unix://@foobar",
    			},
    			"port number must be 0 for unix domain socket",
    		},
    		{
    			"bind unix path",
    			&networking.Server{
    				Hosts: []string{"foo.bar.com"},
    				Port:  &networking.Port{Number: 0, Name: "http", Protocol: "http"},
    				Bind:  "unix://@foobar",
    			},
    			"",
    		},
    		{
    			"bind bad ip",
    			&networking.Server{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/framework/fake_extender.go

    		}
    	}
    	for host, score := range combinedScores {
    		result = append(result, extenderv1.HostPriority{Host: host, Score: score})
    	}
    	return &result, f.Weight, nil
    }
    
    // Bind implements the extender Bind function.
    func (f *FakeExtender) Bind(binding *v1.Binding) error {
    	if f.Binder != nil {
    		return f.Binder()
    	}
    	if len(f.FilteredNodes) != 0 {
    		for _, node := range f.FilteredNodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

      (void)applyPatternsAndFoldGreedily(func, std::move(patterns_2));
    
      SanityCheckAndAdjustment(func);
    
      // Bind the getter with the fixed configuration parameter for the correct
      // quantization settings of the ops.
      std::function<std::unique_ptr<quant::OpQuantSpec>(Operation*)>
          op_quant_spec_getter =
              std::bind(GetOpQuantSpec, std::placeholders::_1,
                        quant_specs_.disable_per_channel_for_dense_layers);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. docs/ko/docs/deployment/server-workers.md

        * 이런식으로 구니콘이 import하여 사용할 수 있는 클래스를 전달해줍니다:
    
            ```Python
            import uvicorn.workers.UvicornWorker
            ```
    
    * `--bind`: 구니콘이 관찰할 IP와 포트를 의미합니다. 콜론 (`:`)을 사용하여 IP와 포트를 구분합니다.
        * 만약에 `--bind 0.0.0.0:80` (구니콘 옵션) 대신 유비콘을 직접 실행하고 싶다면 `--host 0.0.0.0`과 `--port 80`을 사용해야 합니다.
    
    출력에서 각 프로세스에 대한 **PID** (process ID)를 확인할 수 있습니다. (단순한 숫자입니다)
    
    출력 내용:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/LocalSnapshotMetadata.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.io.File;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    const (
    	// ErrReasonBindConflict is used for VolumeBindingNoMatch predicate error.
    	ErrReasonBindConflict ConflictReason = "node(s) didn't find available persistent volumes to bind"
    	// ErrReasonNodeConflict is used for VolumeNodeAffinityConflict predicate error.
    	ErrReasonNodeConflict ConflictReason = "node(s) had volume node affinity conflict"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	if !state.ShouldRecordPluginMetrics() {
    		return bp.Bind(ctx, state, pod, nodeName)
    	}
    	startTime := time.Now()
    	status := bp.Bind(ctx, state, pod, nodeName)
    	f.metricsRecorder.ObservePluginDurationAsync(metrics.Bind, bp.Name(), status.Code().String(), metrics.SinceInSeconds(startTime))
    	return status
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.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.api.plugin.annotations;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top