Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 540 for Bind (0.07 sec)

  1. pilot/pkg/networking/core/listener.go

    		//
    		// If captureMode is not NONE, i.e., bindToPort is false, then
    		// we will bind to user specified IP (if any) or to the VIPs of services in
    		// this egress listener.
    		if egressListener.IstioListener != nil && egressListener.IstioListener.Bind != "" {
    			bind.binds = []string{egressListener.IstioListener.Bind}
    		} else if bind.bindToPort {
    			bind.binds = actualLocalHosts
    		}
    
    		if egressListener.IstioListener != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim does not bind PVC to non-available PV if it's not pre-bind
    			name: "1-17 - skip non-available PV if it's not pre-bind",
    			initialVolumes: []*v1.PersistentVolume{
    				newVolume("volume1-17-pending", "1Gi", "", "", v1.VolumePending, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	}
    }
    
    func TestInboundListener_PrivilegedPorts(t *testing.T) {
    	// Verify that an explicit ingress listener will not bind to privileged ports
    	// if proxy is not using Iptables and cannot bind to privileged ports (1-1023).
    	//
    	// Even if a user explicitly created a Sidecar config with an ingress listener for a privileged port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/networking/core/httproute_test.go

    						Number:   9000,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    					Bind:  "1.1.1.1",
    					Hosts: []string{"*/bookinfo.com"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						// Unix domain socket listener
    						Number:   0,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    					Bind:  "unix://foo/bar/baz",
    					Hosts: []string{"*/bookinfo.com"},
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. kotlin-js-store/yarn.lock

    call-bind@^1.0.0:
      version "1.0.2"
      resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
      integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
      dependencies:
        function-bind "^1.1.1"
        get-intrinsic "^1.0.2"
    
    camelcase@^6.0.0:
      version "6.3.0"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K 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. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

     *
     * 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.gradle.api.internal
    
    import org.gradle.api.Action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top