Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for Calling (0.26 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

        - [Container Images](#container-images-8)
      - [Changelog since v1.27.6](#changelog-since-v1276)
      - [Changes by Kind](#changes-by-kind-8)
        - [Feature](#feature-7)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-8)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
      - [Dependencies](#dependencies-8)
        - [Added](#added-8)
        - [Changed](#changed-8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    - `kube-apiserver` updated:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	if numEndpoints != expectedEndpoints {
    		t.Errorf("Found wrong number of endpoints: expected %d, got %d", expectedEndpoints, numEndpoints)
    	}
    }
    
    // Test calling syncProxyRules() multiple times with various changes
    func TestSyncProxyRulesRepeated(t *testing.T) {
    	logger, _ := klogtesting.NewTestContext(t)
    	ipt := iptablestest.NewFake()
    	fp := NewFakeProxier(ipt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Location loc, Value iteration, ArrayRef<Value> old_values,
        SmallVectorImpl<Value> *new_values, OpBuilder *builder)>;
    
    // Creates a mhlo.while op with `builder` to loop `num_interations` times,
    // each time calling the given `body_fn` on a set of values to generate a new
    // set of values. Returns the final set of values via `final_values`. The
    // initial set of values is passed in via `init_values`.
    //
    // This effectively does:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// K8s rolling update strategy
    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	RollingMaxSurge *IntOrString `protobuf:"bytes,21,opt,name=rollingMaxSurge,proto3" json:"rollingMaxSurge,omitempty"`
    	// The number of pods that can be unavailable during a rolling update (see
    	// `strategy.rollingUpdate.maxUnavailable` here:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.24.md

    - For raw block CSI volumes on Kubernetes, kubelet was incorrectly calling CSI NodeStageVolume for every single "map" (i.e. raw block "mount") operation for a volume already attached to the node. This PR ensures it is only called once per volume per node. ([#112403](https://github.com/kubernetes/kubernetes/pull/112403),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type DaemonEndpoint struct {
    	/*
    		The port tag was not properly in quotes in earlier releases, so it must be
    		uppercase for backwards compatibility (since it was falling back to var name of
    		'Port').
    	*/
    
    	// Port number of the given endpoint.
    	Port int32
    }
    
    // NodeDaemonEndpoints lists ports opened by daemons running on the Node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                      since it prevents Calico''s rules from being bypassed. If you switch
                      to append mode, be sure that the other rules in the chains signal
                      acceptance by falling through to the Calico rules, otherwise the
                      Calico policy will be bypassed. [Default: insert]'
                    pattern: ^(?i)(insert|append)?$
                    type: string
                  dataplaneDriver:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    type DaemonEndpoint struct {
    	/*
    		The port tag was not properly in quotes in earlier releases, so it must be
    		uppercased for backwards compat (since it was falling back to var name of
    		'Port').
    	*/
    
    	// Port number of the given endpoint.
    	Port int32 `json:"Port" protobuf:"varint,1,opt,name=Port"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Required(field.NewPath("resourceVersion"), ""))
    	}
    	return allErrs
    }
    
    type PersistentVolumeClaimSpecValidationOptions struct {
    	// Allow users to recover from previously failing expansion operation
    	EnableRecoverFromExpansionFailure bool
    	// Allow to validate the label value of the label selector
    	AllowInvalidLabelValueInSelector bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top