Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 7,122 for Bind (0.06 sec)

  1. cmd/kube-proxy/app/server.go

    	fs.Var(&utilflag.IPVar{Val: &o.config.BindAddress}, "bind-address", "Overrides kube-proxy's idea of what its node's primary IP is. Note that the name is a historical artifact, and kube-proxy does not actually bind any sockets to this IP. This parameter is ignored if a config file is specified by --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

          </component>
          <component group="jakarta.xml.bind" name="jakarta.xml.bind-api" version="2.3.2">
             <artifact name="jakarta.xml.bind-api-2.3.2.jar">
                <pgp value="FC411CD3CB7DCB0ABC9801058118B3BCDB1A5000"/>
             </artifact>
          </component>
          <component group="jakarta.xml.bind" name="jakarta.xml.bind-api" version="3.0.0">
             <artifact name="jakarta.xml.bind-api-3.0.0.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util.go

    func BuildAddress(bind string, port uint32) *core.Address {
    	address := BuildNetworkAddress(bind, port, istionetworking.TransportProtocolTCP)
    	if address != nil {
    		return address
    	}
    
    	return &core.Address{
    		Address: &core.Address_Pipe{
    			Pipe: &core.Pipe{
    				Path: strings.TrimPrefix(bind, model.UnixAddressPrefix),
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    				if err = checkVolumeSatisfyClaim(volume, claim); err != nil {
    					logger.V(4).Info("Can't bind the claim to volume", "volumeName", volume.Name, "err", err)
    					// send an event
    					msg := fmt.Sprintf("Cannot bind to requested volume %q: %s", volume.Name, err)
    					ctrl.eventRecorder.Event(claim, v1.EventTypeWarning, events.VolumeMismatch, msg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	}
    	scenarios := map[string]scenarioType{
    		"nothing-to-bind-nil": {
    			shouldFail: true,
    		},
    		"nothing-to-bind-bindings-nil": {
    			provisionedPVCs: []*v1.PersistentVolumeClaim{},
    			shouldFail:      true,
    		},
    		"nothing-to-bind-provisionings-nil": {
    			bindings:   []*BindingInfo{},
    			shouldFail: true,
    		},
    		"nothing-to-bind-empty": {
    			bindings:        []*BindingInfo{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation_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 validation
    
    import (
    	"testing"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RemoteSnapshotMetadataGenerator.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.util.Collection;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top