Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 524 for unbound (0.19 sec)

  1. src/syscall/syscall_plan9.go

    	}
    	return
    }
    
    func Unmount(name, old string) (err error) {
    	if fixwd(name, old) {
    		defer runtime.UnlockOSThread()
    	}
    	oldp, err := BytePtrFromString(old)
    	if err != nil {
    		return err
    	}
    	oldptr := uintptr(unsafe.Pointer(oldp))
    
    	var r0 uintptr
    	var e ErrorString
    
    	// bind(2) man page: If name is zero, everything bound or mounted upon old is unbound or unmounted.
    	if name == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    			}
    		}
    	}
    	return nil
    }
    
    // Depending upon object type, waits afterward until the object is synced
    // by the policy source. Note that policies that are not bound are skipped,
    // so you should not try to wait for an unbound policy. Create both the binding
    // and policy, then wait.
    func (p *PolicyTestContext[P, B, E]) WaitForReconcile(timeoutCtx context.Context, object runtime.Object) error {
    	if !p.Source.HasSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    		pvName := pvc.Spec.VolumeName
    		if pvName == "" {
    			// PVC is not bound. It was either deleted and created again or
    			// it was forcefully unbound by admin. The pod can still use the
    			// original PV where it was bound to, so we count the volume if
    			// it belongs to the running predicate.
    			if pl.matchProvisioner(pvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// mountRequestTime stores time at which mount was requested
    	mountRequestTime time.Time
    }
    
    const (
    	// Maximum errors to be stored per pod in desiredStateOfWorld.podErrors to
    	// prevent unbound growth.
    	maxPodErrors = 10
    )
    
    func (dsw *desiredStateOfWorld) AddPodToVolume(
    	podName types.UniquePodName,
    	pod *v1.Pod,
    	volumeSpec *volume.Spec,
    	outerVolumeSpecName string,
    	volumeGidValue string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                    }
                }
    
            when:
            registry.bindAllReferences()
    
            then:
            noExceptionThrown()
        }
    
        def "adding an unbound scoped rule for an element that is never created results in an error upon validation if the scope parent has been self closed"() {
            given:
            def mmType = ModelTypes.modelMap(Bean)
    
            registry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    		},
    		{
    			name: "unbound/no matches",
    			volumeBinderConfig: &volumebinding.FakeVolumeBinderConfig{
    				FindReasons: volumebinding.ConflictReasons{volumebinding.ErrReasonBindConflict},
    			},
    			eventReason: "FailedScheduling",
    			expectError: makePredicateError("1 node(s) didn't find available persistent volumes to bind"),
    		},
    		{
    			name: "bound and unbound unsatisfied",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller.go

    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    	if pvc.Status.Phase != v1.ClaimBound || pvc.Spec.VolumeName == "" {
    		// Skip unbound PVCs.
    		return nil
    	}
    
    	objs, err := adc.podIndexer.ByIndex(common.PodPVCIndex, key)
    	if err != nil {
    		return err
    	}
    	for _, obj := range objs {
    		pod, ok := obj.(*v1.Pod)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-64432`](https://youtrack.jetbrains.com/issue/KT-64432) Unbound symbol access in Fir2Ir fake override builder
    - [`KT-64466`](https://youtrack.jetbrains.com/issue/KT-64466) K2: Delegated method annotations are not copied in IR
    - [`KT-63589`](https://youtrack.jetbrains.com/issue/KT-63589) K1: Unsound type inference for unbound callable reference to star-projected class's generic mutable property
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. pkg/channels/unbounded.go

    // performance critical code paths, using Unbounded is strongly discouraged and
    // defining a new type specific implementation of this buffer is preferred. See
    // internal/transport/transport.go for an example of this.
    type Unbounded[T any] struct {
    	c       chan T
    	mu      sync.Mutex
    	backlog []T
    }
    
    // NewUnbounded returns a new instance of Unbounded.
    func NewUnbounded[T any]() *Unbounded[T] {
    	return &Unbounded[T]{c: make(chan T, 1)}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. releasenotes/notes/inbound-passthrough.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 29940
    upgradeNotes:
      - title: Inbound Forwarding Configuration
        content: |
          The behavior of inbound forwarding will be modified in the near future. While this change is not enabled
          by default in Istio 1.10, it can be enabled today by configuring the `PILOT_ENABLE_INBOUND_PASSTHROUGH=true` environment
          variable in Istiod.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top