Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,467 for updatePod (0.18 sec)

  1. pkg/test/fakes/imageregistry/Makefile

    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    HUB ?= gcr.io/istio-testing
    IMG := $(HUB)/fake-registry
    BIN_NAME := main
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.3
    
    all: build_and_push clean
    
    $(MD_PATH)/$(BIN_NAME)-amd64: $(MD_PATH)/main.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/fix/doc.go

    The -r flag restricts the set of rewrites considered to those in the
    named list.  By default fix considers all known rewrites.  Fix's
    rewrites are idempotent, so that it is safe to apply fix to updated
    or partially updated code even without using the -r flag.
    
    Fix prints the full list of fixes it can apply in its help output;
    to see them, run go tool fix -help.
    
    Fix does not make backup copies of the files that it edits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/metrics/description_test.go

    					}
    					b.Text = want
    					updated = true
    				}
    			}
    		}
    	}
    
    	if !foundCode {
    		t.Fatalf("did not find Supported metrics list in doc.go")
    	}
    	if updated {
    		fmt.Fprintf(os.Stderr, "go test -generate: writing new doc.go\n")
    		var buf bytes.Buffer
    		buf.Write(src[:fdoc.Pos()-f.FileStart])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    }
    
    // totalsByAction includes total numbers for added and removed.
    type totalsByAction struct {
    	added, updated, removed int
    }
    
    // add adds totals from another totalsByAction struct.
    func (t *totalsByAction) add(totals totalsByAction) {
    	t.added += totals.added
    	t.updated += totals.updated
    	t.removed += totals.removed
    }
    
    // newDesiredCalc initializes and returns a new desiredCalc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. pkg/util/pod/pod.go

    	}
    	if unchanged {
    		return nil, patchBytes, true, nil
    	}
    
    	updatedPod, err := c.CoreV1().Pods(namespace).Patch(ctx, name, types.StrategicMergePatchType, patchBytes, metav1.PatchOptions{}, "status")
    	if err != nil {
    		return nil, nil, false, fmt.Errorf("failed to patch status %q for pod %q/%q: %v", patchBytes, namespace, name, err)
    	}
    	return updatedPod, patchBytes, false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 15:22:29 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.cc

    namespace calibrator {
    
    void CalibrationStatisticsCollectorMinMax::ClearData() {
      // global_min will be updated by std::min(global_min, input_value) so
      // it is initialized with the value numeric_limits<float>::max().
      min_max_statistics_.set_global_min(std::numeric_limits<float>::max());
    
      // global_max will be updated by std::max(global_max, input_value) so it
      // is initialized with the value numeric_limits<float>::lowest().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. releasenotes/notes/kiali-update-v1.60.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 30 03:23:10 UTC 2022
    - 131 bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util.go

    func SetDeploymentRevision(deployment *apps.Deployment, revision string) bool {
    	updated := false
    
    	if deployment.Annotations == nil {
    		deployment.Annotations = make(map[string]string)
    	}
    	if deployment.Annotations[RevisionAnnotation] != revision {
    		deployment.Annotations[RevisionAnnotation] = revision
    		updated = true
    	}
    
    	return updated
    }
    
    // MaxRevision finds the highest revision in the replica sets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    					},
    				},
    			},
    			expectedPodStatusUpdate: false,
    		},
    		// Node created long time ago, with status updated by kubelet exceeds grace period. Node lease is renewed.
    		// Expect no action from node controller (within monitor grace period).
    		{
    			description: "Node created long time ago, with status updated by kubelet exceeds grace period. Node lease is renewed.",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    //    plug-in.
    //    * It can be checked programmatically to determine which struct fields are
    //    available in the structure.
    //  * When a member is added to a struct, the struct size definition must be
    //  updated to use the new last member of the struct.
    //
    // Example usage:
    //   /* Sample TensorFlow code below, exact implementation might differ. */
    //   // Version checking uses `struct_size`. It is exempt from the `TF/TP` rule
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
Back to top