Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,035 for updateIPs (0.41 sec)

  1. src/cmd/go/testdata/script/mod_require_exclude.txt

    stderr '^go: ignoring requirement on excluded version rsc.io/sampler v1\.99\.99$'
    stderr '^go: updates to go.mod needed, disabled by -mod=readonly; to update it:\n\tgo mod tidy$'
    ! stdout '^rsc.io/sampler v1.99.99'
    cmp go.mod go.mod.orig
    
    ! go list -mod=vendor -m rsc.io/sampler
    stderr '^go: ignoring requirement on excluded version rsc.io/sampler v1\.99\.99$'
    stderr '^go: updates to go.mod needed, disabled by -mod=vendor; to update it:\n\tgo mod tidy$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/config/types.go

    	// and larger endpoint slices, but larger resources.
    	MaxEndpointsPerSlice int32
    
    	// EndpointUpdatesBatchPeriod can be used to batch endpoint updates.
    	// All updates of endpoint triggered by pod change will be delayed by up to
    	// 'EndpointUpdatesBatchPeriod'. If other pods in the same endpoint change
    	// in that period, they will be batched to a single endpoint update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    		return err
    	}
    	_, err = c.UpdateStatus(context.TODO(), updatedSV, metav1.UpdateOptions{})
    	return err
    }
    
    // localUpdateStorageVersion updates the input storageversion with given server storageversion info.
    // The function updates the input storageversion in place.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. cmd/erasure.go

    						Name:       bucket.Name,
    						LastUpdate: time.Time{},
    						NextCycle:  wantCycle,
    					}
    				}
    				// Collect updates.
    				updates := make(chan dataUsageEntry, 1)
    				var wg sync.WaitGroup
    				wg.Add(1)
    				go func(name string) {
    					defer wg.Done()
    					for update := range updates {
    						select {
    						case <-ctx.Done():
    						case bucketResults <- dataUsageEntryInfo{
    							Name:   name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_overlay.txt

    cp incomplete-sum-file $WORK/overlay/overlay-sum-used-correct-sums
    ! go get -overlay overlay.json .
    stderr '^go: updates to go.sum needed, but go.sum is part of the overlay specified with -overlay$'
    cmp incomplete-sum-file $WORK/overlay/overlay-sum-used-correct-sums
    ! go mod tidy -overlay overlay.json
    stderr '^go: updates to go.sum needed, but go.sum is part of the overlay specified with -overlay$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/config/types.go

    	// will be mirrored to an EndpointSlice for an EndpointSubset.
    	MirroringMaxEndpointsPerSubset int32
    
    	// mirroringEndpointUpdatesBatchPeriod can be used to batch EndpointSlice
    	// updates. All updates triggered by EndpointSlice changes will be delayed
    	// by up to 'mirroringEndpointUpdatesBatchPeriod'. If other addresses in the
    	// same Endpoints resource change in that period, they will be batched to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. tests/hooks_test.go

    	}
    
    	DB.Model(&product).Select("code", "price").Updates(map[string]interface{}{"code": "L1212"})
    
    	if product.Price != 150 || product.Code != "L1212" {
    		t.Errorf("invalid data after update, got %+v", product)
    	}
    
    	// Code not changed, price should not change
    	DB.Model(&product).Updates(map[string]interface{}{"Name": "Product New"})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. pkg/registry/registrytest/endpoint.go

    	if err != nil {
    		return nil, false, err
    	}
    	endpoints := obj.(*api.Endpoints)
    	// TODO: support namespaces in this mock
    	e.lock.Lock()
    	defer e.lock.Unlock()
    
    	e.Updates = append(e.Updates, *endpoints)
    
    	if e.Err != nil {
    		return nil, false, e.Err
    	}
    	if e.Endpoints == nil {
    		e.Endpoints = &api.EndpointsList{
    			Items: []api.Endpoints{
    				*endpoints,
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4K bytes
    - Viewed (0)
  9. releasenotes/notes/31946.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 31946
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 07 18:37:59 UTC 2022
    - 174 bytes
    - Viewed (0)
  10. .github/dependabot.yml

    ---
    version: 2
    updates:
      - package-ecosystem: gomod
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: github-actions
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: gomod
        directory: /tests
        schedule:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Aug 09 05:16:25 UTC 2021
    - 287 bytes
    - Viewed (0)
Back to top