Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,035 for updateIPs (0.19 sec)

  1. cluster/addons/rbac/cluster-loadbalancing/glbc/roles.yaml

    # https://github.com/kubernetes/ingress-gce/blob/5c3fcb5845e74b92ea8bd52929b15fc5c9fa7970/cmd/glbc/main.go#L133
    # GLBC creates and updates `networking.gke.io/GCPIngressParams`
    # https://github.com/kubernetes/ingress-gce/blob/7f0928629c85e7a54c6af9e6e490ac89d057461a/cmd/glbc/main.go#L151-L162
    # TODO(rramkumar1): https://github.com/kubernetes/ingress-gce/issues/744
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 13:39:59 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/goline_order.txt

    env TESTGO_VERSION=go1.21.2
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    go mod tidy
    go list -deps -tags usem1
    
    # go get also works
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    go get go@1.21.2
    go list -deps -tags usem1
    
    
    -- go.mod --
    module m
    go 1.21.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. releasenotes/notes/configmap-mount.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 31410
    releaseNotes:
    - |
      **Improved** configmaps to be read directly rather than from volume mounts. This improves the speed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 25 15:46:51 UTC 2021
    - 311 bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/HashingInputStream.java

       * byte read.
       */
      @Override
      @CanIgnoreReturnValue
      public int read() throws IOException {
        int b = in.read();
        if (b != -1) {
          hasher.putByte((byte) b);
        }
        return b;
      }
    
      /**
       * Reads the specified bytes of data from the underlying input stream and updates the hasher with
       * the bytes read.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfieldsupdater.go

    	fieldManager Manager
    }
    
    var _ Manager = &managedFieldsUpdater{}
    
    // NewManagedFieldsUpdater is responsible for updating the managedfields
    // in the object, updating the time of the operation as necessary. For
    // updates, it uses a hard-coded manager to detect if things have
    // changed, and swaps back the correct manager after the operation is
    // done.
    func NewManagedFieldsUpdater(fieldManager Manager) Manager {
    	return &managedFieldsUpdater{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. releasenotes/notes/auto-passthrough-regression.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
        **Fixed** auto-passthrough gateways not getting XDS pushes on service updates 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 228 bytes
    - Viewed (0)
  7. .github/dependabot.yml

    version: 2
    updates:
      # GitHub Actions
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        commit-message:
          prefix: ⬆
      # Python
      - package-ecosystem: "pip"
        directory: "/"
        schedule:
          interval: "monthly"
        commit-message:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:41:55 UTC 2024
    - 311 bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_utils.go

    			fmt.Sprintf("sequence No: %v->%v", rs.Status.ObservedGeneration, newStatus.ObservedGeneration))
    
    		rs.Status = newStatus
    		updatedRS, updateErr = c.UpdateStatus(context.TODO(), rs, metav1.UpdateOptions{})
    		if updateErr == nil {
    			return updatedRS, nil
    		}
    		// Stop retrying if we exceed statusUpdateRetries - the replicaSet will be requeued with a rate limit.
    		if i >= statusUpdateRetries {
    			break
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. lib/time/update.bash

    #
    # That will prepare the files and create the commit.
    #
    # To review such a commit (as the reviewer), use:
    #
    #	git codereview change NNNNNN   # CL number
    #	cd lib/time
    #	./update.bash
    #
    # If it prints "No updates needed.", then the generated files
    # in the CL match the update.bash in the CL.
    
    # Versions to use.
    CODE=2024a
    DATA=2024a
    
    set -e
    
    cd $(dirname $0)
    rm -rf work
    mkdir work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/make_test_graphs.py

    def tfvariable_sequential_updates(_):
      x = variables.Variable(1.0, name='x')
      y = variables.Variable(1.0, name='y')
      updates = control_flow_ops.no_op()
      for _ in range(3):
        with ops.control_dependencies([updates]):
          x_val = x.read_value() + y
          updates = x.assign_sub(0.1 * x_val)
    
      array_ops.identity(updates, name='result')
    
    
    def write_graph(build_graph, out_dir):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top