Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for addLink (0.12 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	verifyVolumeReportedAsAttachedToNode(t, logger, generatedVolumeName, nodeName1, false, asw, volumeAttachedCheckTimeout)
    
    	// Add a second pod which tries to attach the volume to the same node.
    	// After adding pod to the same node, detach will not be triggered any more,
    	// the volume gets attached and reported as attached to the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	d.addDwarfAddrField(su, v)
    }
    
    // addDwarfAddrField adds a DWARF field in DWARF 64bits or 32bits.
    func (d *dwctxt) addDwarfAddrField(sb *loader.SymbolBuilder, v uint64) {
    	if isDwarf64(d.linkctxt) {
    		sb.AddUint(d.arch, v)
    	} else {
    		sb.AddUint32(d.arch, uint32(v))
    	}
    }
    
    // addDwarfAddrRef adds a DWARF pointer in DWARF 64bits or 32bits.
    func (d *dwctxt) addDwarfAddrRef(sb *loader.SymbolBuilder, t loader.Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. pkg/proxy/endpointschangetracker_test.go

    	},
    	}
    
    	for tci, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			fp := newFakeProxier(v1.IPv4Protocol, time.Time{})
    			fp.hostname = testHostname
    
    			// First check that after adding all previous versions of endpoints,
    			// the fp.previousEndpointsMap is as we expect.
    			for i := range tc.previousEndpointSlices {
    				if tc.previousEndpointSlices[i] != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    	// aren't tied to Ingress. They can be used to route intra-cluster traffic.
    	// 2. Consider adding fields for ingress-type specific global options
    	// usable by a loadbalancer, like http keep-alive.
    
    	// http is a list of http selectors pointing to backends.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			select {
    			case <-stopCh:
    				return
    			default:
    				cacher.Lock()
    				cacher.bookmarkWatchers.popExpiredWatchersThreadUnsafe()
    				cacher.Unlock()
    			}
    		}
    	}()
    
    	// wait for adding/removing watchers to end
    	wg.Wait()
    
    	if watchErr != nil {
    		t.Fatal(watchErr)
    	}
    
    	// wait out the expiration period and pop expired watchers
    	time.Sleep(2 * time.Second)
    	cacher.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * are never inherited.
         *
         * Rationale: if we make configuration inherit attributes, then it means that 2 "child" configurations
         * could easily have the same set of attributes. It also means that just adding a configuration could
         * make resolution fail if we decide that 2 configurations with the same attributes lead to an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    				// Record that we were able to bind to the parent
    				pr.AttachedRoutes++
    			}
    			parentRefs = append(parentRefs, rpi)
    		}
    		for _, gw := range gateways[gk] {
    			// Append all matches. Note we may be adding mismatch section or ports; this is handled later
    			appendParent(gw, pk)
    		}
    	}
    	// Ensure stable order
    	slices.SortBy(parentRefs, func(a routeParentReference) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    	if !dstOpts.NoAuditLog {
    		auditObjectErasureSet(ctx, dstObject, &er)
    	}
    
    	// This call shouldn't be used for anything other than metadata updates or adding self referential versions.
    	if !srcInfo.metadataOnly {
    		return oi, NotImplemented{}
    	}
    
    	if !dstOpts.NoLock {
    		lk := er.NewNSLock(dstBucket, dstObject)
    		lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
            }
    
            private void addConfiguration(String c) {
                confAware.addConfiguration(c);
                if (state != State.EXCLUDE) {
                    // we are currently adding a configuration to either an include, exclude or artifact
                    // element
                    // of a dependency. This means that we have to add this element to the corresponding
                    // conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    	// if it needs some other operation to be successful before go.mod and go.sum
    	// can be written (for example, 'go mod download' must download modules before
    	// adding sums to go.sum). Packages that set this are responsible for calling
    	// WriteGoMod explicitly.
    	ExplicitWriteGoMod bool
    )
    
    // Variables set in Init.
    var (
    	initialized bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top