Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 572 for updateIPs (1.46 sec)

  1. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    var (
    	kubeletFinalizePhaseExample = cmdutil.Examples(`
    		# Updates settings relevant to the kubelet after TLS bootstrap"
    		kubeadm init phase kubelet-finalize all --config
    		`)
    	// TODO: remove with 'experimental-cert-rotation'.
    	// https://github.com/kubernetes/kubeadm/issues/3046
    	enableClientCertRotationRun = false
    )
    
    // NewKubeletFinalizePhase creates a kubeadm workflow phase that updates settings
    // relevant to the kubelet after TLS bootstrap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            operations.size() == 3
            assertConfigureOp(operations[0])
            assertBeforeEvaluateOp(operations[1])
            assertAfterEvaluateOp(operations[2])
        }
    
        void "notifies listeners and updates state on evaluation failure"() {
            when:
            1 * delegate.evaluate(project, state) >> { throw failure1 }
            1 * listener.afterEvaluate(project, state)
    
            then:
            failsWithCause(failure1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. .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)
  4. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        fun systemPropertiesCleared() = mode.toTrackingMode().systemPropertiesCleared()
    
        private
        inner class ModeHolder {
            // ModeHolder encapsulates concurrent mode updates.
            private
            var mode: TrackerMode = Initial()
    
            private
            inline fun <T : TrackerMode> setMode(transition: (TrackerMode) -> T): T {
                synchronized(this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pkg/kubelet/nodestatus/setters.go

    		return nil
    	}
    }
    
    // DaemonEndpoints returns a Setter that updates the daemon endpoints on the node.
    func DaemonEndpoints(daemonEndpoints *v1.NodeDaemonEndpoints) Setter {
    	return func(ctx context.Context, node *v1.Node) error {
    		node.Status.DaemonEndpoints = *daemonEndpoints
    		return nil
    	}
    }
    
    // Images returns a Setter that updates the images on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy_test.go

    		if len(errs) != 0 {
    			t.Errorf("should ignore updates to PersistentVolumeClaimRetentionPolicyType")
    		}
    	})
    
    	validPs.Spec.Selector = &metav1.LabelSelector{MatchLabels: map[string]string{"a": "bar"}}
    	Strategy.PrepareForUpdate(ctx, validPs, ps)
    	errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    	if len(errs) == 0 {
    		t.Errorf("expected a validation error since updates are disallowed on statefulsets.")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    def DecomposeResourceScatterAdd : Pat<
      (TF_ResourceScatterAddOp:$src_op $resource, $indices, $updates),
      (TF_AssignVariableOp
        $resource,
        (TF_TensorScatterAddOp
          (CreateTFReadVariableOp $src_op, $updates, $resource),
          (TF_ExpandDimsOp $indices,
           (TF_ConstOp (GetScalarOfType<-1> $indices))),
          $updates
        ),
        (CreateConstBoolAttrFalse)
      )>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    // of workloads, such as auto-registration, health status updates, etc.
    //
    // If connecting proxy represents a workload that is using auto-registration, it will
    // create a WorkloadEntry resource automatically and be ready to receive health status
    // updates.
    //
    // If connecting proxy represents a workload that is not using auto-registration,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    		batchPeriod      time.Duration
    		podsCount        int
    		updates          []podUpdate
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three updates with no batching",
    			batchPeriod: 0 * time.Second,
    			podsCount:   10,
    			updates: []podUpdate{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay:   200 * time.Millisecond,
    					podName: "pod0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        "tf.ResourceScatterAdd"(%resource, %indices, %updates) : (tensor<*x!tf_type.resource<tensor<*xi32>>>, tensor<?xi32>, tensor<?x?x?xi32>) -> ()
    
        tf_device.return
      }) : () -> ()
      func.return
    }
    
    // Test that tf.ResourceScatterAdd operation is decomposed to
    // tf.TensorScatterAdd. Updates is scalar.
    // CHECK-LABEL: @decompose_ResourceScatterAdd_op_with_scalar_updates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top