Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 683 for Updatef (0.33 sec)

  1. src/testing/fuzz.go

    					},
    					testContext: tctx,
    					fuzzContext: fctx,
    				}
    				f.w = indenter{&f.common}
    				if f.chatty != nil {
    					f.chatty.Updatef(f.name, "=== RUN   %s\n", f.name)
    				}
    				go fRunner(f, ft.Fn)
    				<-f.signal
    				if f.chatty != nil && f.chatty.json {
    					f.chatty.Updatef(f.parent.name, "=== NAME  %s\n", f.parent.name)
    				}
    				ok = ok && !f.Failed()
    				ran = ran || f.ran
    			}
    			if !ran {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    			}
    			if p := runtime.GOMAXPROCS(-1); p != procs {
    				fmt.Fprintf(os.Stderr, "testing: %s left GOMAXPROCS set to %d\n", benchName, p)
    			}
    			if b.chatty != nil && b.chatty.json {
    				b.chatty.Updatef("", "=== NAME  %s\n", "")
    			}
    		}
    	}
    }
    
    // If hideStdoutForTesting is true, Run does not print the benchName.
    // This avoids a spurious print during 'go test' on package testing itself,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update.go

    		cur, err = dsc.dedupCurHistories(ctx, ds, currentHistories)
    		if err != nil {
    			return nil, nil, err
    		}
    		// Update revision number if necessary
    		if cur.Revision < currRevision {
    			toUpdate := cur.DeepCopy()
    			toUpdate.Revision = currRevision
    			_, err = dsc.kubeClient.AppsV1().ControllerRevisions(ds.Namespace).Update(ctx, toUpdate, metav1.UpdateOptions{})
    			if err != nil {
    				return nil, nil, err
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. cmd/update.go

    	// Check if we are in DCOS environment, return
    	// deployment guide for update procedures.
    	if IsDCOS() {
    		return mesosDeploymentDoc
    	}
    
    	// Check if we are in kubernetes environment, return
    	// deployment guide for update procedures.
    	if IsKubernetes() {
    		return kubernetesDeploymentDoc
    	}
    
    	// Check if we are docker environment, return docker update command
    	if IsDocker() {
    		// Construct release tag name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                def theArchive2 = rootProject.file('test2.tar')
    
                tasks.register('update1', UpdateTask) {
                    archive = theArchive1
                    replacementText = 'modification 1'
                }
    
                tasks.register('verify1', VerifyTask) {
                    dependsOn tasks.named('update1')
                    archive = theArchive1
                    beginsWith = 'modification 1'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/kubelet/config/config.go

    			s.updates <- *reconciles
    		}
    
    	case PodConfigNotificationSnapshotAndUpdates:
    		if len(removes.Pods) > 0 || len(adds.Pods) > 0 || firstSet {
    			s.updates <- kubetypes.PodUpdate{Pods: s.mergedState().([]*v1.Pod), Op: kubetypes.SET, Source: source}
    		}
    		if len(updates.Pods) > 0 {
    			s.updates <- *updates
    		}
    		if len(deletes.Pods) > 0 {
    			s.updates <- *deletes
    		}
    
    	case PodConfigNotificationSnapshot:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    // Then:
    //  * d,e,f are the update window dims [0,1,2]
    //  * c is the index vector dimension
    //  * a,b iterate over the updates and indices
    //
    //  The update needs permuting to be in the form (a,b,d,e,f) so that the update
    //  window dims are the trailing dimensions.
    //
    // To canonicalize the updates above, replace the updates with:
    //   transpose(updates, permutation={3,4,0,1,2})
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    		return err
    	}
    	node := originalNode.DeepCopy()
    
    	needUpdate := false
    	for _, update := range updateFuncs {
    		newNode, updated, err := update(node)
    		if err != nil {
    			return err
    		}
    		node = newNode
    		needUpdate = needUpdate || updated
    	}
    
    	if needUpdate {
    		// PatchNodeStatus can update both node's status and labels or annotations
    		// Updating status by directly updating node does not work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/controller.go

    	if conTime.Before(lastConTime) {
    		return false, nil
    	}
    	// Try to update, if it fails we retry all the above logic since the WLE changed
    	updated := wle.DeepCopy()
    	setConnectMeta(&updated, c.instanceID, conTime)
    	_, err := c.store.Update(updated)
    	if err != nil {
    		return false, fmt.Errorf("failed updating WorkloadEntry %s/%s err: %v", proxy.Metadata.Namespace, entryName, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/node_container_manager_linux.go

    	// If Node Allocatable is enforced on a node that has not been drained or is updated on an existing node to a lower value,
    	// existing memory usage across pods might be higher than current Node Allocatable Memory Limits.
    	// Pod Evictions are expected to bring down memory usage to below Node Allocatable limits.
    	// Until evictions happen retry cgroup updates.
    	// Update limits on non root cgroup-root to be safe since the default limits for CPU can be too low.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top