Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,023 for Updatef (0.12 sec)

  1. pkg/proxy/servicechangetracker.go

    		} else {
    			svcPortMap[svcPortName] = baseSvcInfo
    		}
    	}
    	return svcPortMap
    }
    
    // Update updates ServicePortMap base on the given changes, returns information about the
    // diff since the last Update, triggers processServiceMapChange on every change, and
    // clears the changes map.
    func (sm ServicePortMap) Update(sct *ServiceChangeTracker) UpdateServiceMapResult {
    	sct.lock.Lock()
    	defer sct.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. 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)
  3. hack/update-import-aliases.sh

    # limitations under the License.
    
    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. hack/update-vanity-imports.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script fixes the vanity imports programmatically.
    # Usage: `hack/update-vanity-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::verify_go_version
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. pkg/kubelet/types/pod_update.go

    	REMOVE
    	// UPDATE signifies pods have been updated in this source.
    	UPDATE
    	// RECONCILE signifies pods that have unexpected status in this source,
    	// kubelet should reconcile status with this source.
    	RECONCILE
    )
    
    // These constants identify the sources of pods.
    const (
    	// Filesource idenitified updates from a file.
    	FileSource = "file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. releasenotes/notes/kiali-update-v1.72.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:12 UTC 2023
    - 131 bytes
    - Viewed (0)
  8. releasenotes/notes/kiali-update-v1.76.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:06:34 UTC 2023
    - 131 bytes
    - Viewed (0)
  9. hack/verify-vendor-licenses.sh

    # or not. We should run `hack/update-vendor-licenses.sh` and commit the results,
    # if actually updates them.
    # Usage: `hack/verify-vendor-licenses.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. hack/update-internal-modules.sh

                dirname "${F}"; \
            done
        )
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run hack/update-internal-modules.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::golang::setup_env
    
    for mod in "${MODULES[@]}"; do
      echo "=== tidying go.mod/go.sum in ${mod}"
      go -C "${KUBE_ROOT}/${mod}" mod edit -fmt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top