Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for sync_bg (0.33 sec)

  1. tests/test_dependency_contextmanager.py

        assert data["context_b"] == "started b"
        assert data["context_a"] == "started a"
        assert data["sync_bg"] == "not set"
        assert state["context_b"] == "finished b with a: started a"
        assert state["context_a"] == "finished a"
        assert (
            state["sync_bg"]
            == "sync_bg set - b: finished b with a: started a - a: finished a"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/controller/namespace/config/types.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // NamespaceControllerConfiguration contains elements describing NamespaceController.
    type NamespaceControllerConfiguration struct {
    	// namespaceSyncPeriod is the period for syncing namespace life-cycle
    	// updates.
    	NamespaceSyncPeriod metav1.Duration
    	// concurrentNamespaceSyncs is the number of namespace objects that are
    	// allowed to sync concurrently.
    	ConcurrentNamespaceSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1K bytes
    - Viewed (0)
  3. releasenotes/notes/30838.yaml

    - |
      **Fixed** istiod never becoming ready when it fails to read resources from clusters configured via remote secrets.
      After a timeout configured by `PILOT_REMOTE_CLUSTER_TIMEOUT` (default 30s), istiod will become ready without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 16 18:31:07 UTC 2021
    - 429 bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    		Spec:       v1.ServiceSpec{Ports: []v1.ServicePort{{Port: 80}}},
    	})
    	err := endpoints.syncService(tCtx, ns+"/foo")
    	if err != nil {
    		t.Errorf("Unexpected error syncing service %v", err)
    	}
    	endpointsHandler.ValidateRequestCount(t, 0)
    }
    
    func TestSyncEndpointsExistingNilSubsets(t *testing.T) {
    	ns := metav1.NamespaceDefault
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package nodeipam contains code for syncing cloud instances with
    // node registry
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 20:48:08 UTC 2018
    - 726 bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/config/types.go

    	// serviceAccountKeyFile is the filename containing a PEM-encoded private RSA key
    	// used to sign service account tokens.
    	ServiceAccountKeyFile string
    	// concurrentSATokenSyncs is the number of service account token syncing operations
    	// that will be done concurrently.
    	ConcurrentSATokenSyncs int32
    	// rootCAFile is the root certificate authority will be included in service
    	// account's token secret. This must be a valid PEM-encoded CA bundle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/ephemeral/config/types.go

    package config
    
    // EphemeralVolumeControllerConfiguration contains elements describing EphemeralVolumeController.
    type EphemeralVolumeControllerConfiguration struct {
    	// ConcurrentEphemeralVolumeSyncs is the number of ephemeral volume syncing operations
    	// that will be done concurrently. Larger number = faster ephemeral volume updating,
    	// but more CPU (and network) load.
    	ConcurrentEphemeralVolumeSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 989 bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/config/types.go

    )
    
    // ResourceQuotaControllerConfiguration contains elements describing ResourceQuotaController.
    type ResourceQuotaControllerConfiguration struct {
    	// resourceQuotaSyncPeriod is the period for syncing quota usage status
    	// in the system.
    	ResourceQuotaSyncPeriod metav1.Duration
    	// concurrentResourceQuotaSyncs is the number of resource quotas that are
    	// allowed to sync concurrently. Larger number = more responsive quota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/ephemeralcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentEphemeralVolumeSyncs, "concurrent-ephemeralvolume-syncs", o.ConcurrentEphemeralVolumeSyncs, "The number of ephemeral volume syncing operations that will be done concurrently. Larger number = faster ephemeral volume updating, but more CPU (and network) load")
    }
    
    // ApplyTo fills up EphemeralVolumeController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. build/release-images.sh

        CMD_TARGETS="${CMD_TARGETS} ${KUBE_CONFORMANCE_IMAGE_TARGETS[*]}"
    fi
    # include extra WHAT if specified so you can build docker images + binaries
    # in one call with a single pass of syncing to the container + generating code
    if [[ -n "${KUBE_EXTRA_WHAT:-}" ]]; then
        CMD_TARGETS="${CMD_TARGETS} ${KUBE_EXTRA_WHAT}"
    fi
    
    kube::build::verify_prereqs
    kube::build::build_image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top