Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,328 for runes (0.09 sec)

  1. pkg/proxy/iptables/number_generated_rules_test.go

    	"k8s.io/utils/ptr"
    )
    
    // kube-proxy generates iptables rules to forward traffic from Services to Endpoints
    // kube-proxy uses iptables-restore to configure the rules atomically, however,
    // this has the downside that large number of rules take a long time to be processed,
    // causing disruption.
    // There are different parameters than influence the number of rules generated:
    // - ServiceType
    // - Number of Services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/internal/fuzz/encoding.go

    			} else {
    				fmt.Fprintf(b, "%T(%v)\n", t, t)
    			}
    		case string:
    			fmt.Fprintf(b, "string(%q)\n", t)
    		case rune: // int32
    			// Although rune and int32 are represented by the same type, only a subset
    			// of valid int32 values can be expressed as rune literals. Notably,
    			// negative numbers, surrogate halves, and values above unicode.MaxRune
    			// have no quoted representation.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/README.md

        - [Local UP Cluster](#local-up-cluster)
        - [GCE Cluster](#gce-cluster)
        - [Cluster Created by Kubeadm](#cluster-created-by-kubeadm)
      - [Debug](#debug)
        - [Check IPVS proxy rules](#check-ipvs-proxy-rules)
        - [Why kube-proxy can't start IPVS mode](#why-kube-proxy-cant-start-ipvs-mode)
    
    # IPVS
    
    This document intends to show users
    - what is IPVS
    - difference between IPVS and IPTABLES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error uploading crisocket"))
    	}
    
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptoken.AllowBoostrapTokensToGetNodes(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to post CSRs
    	if err := nodebootstraptoken.AllowBootstrapTokensToPostCSRs(client); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. docs/bucket/replication/DESIGN.md

    similar to regular replication. Objects qualifying for existing object replication are detected when scanner runs, and will be replicated if existing object replication is enabled and applicable replication rules are satisfied. Because replication depends on the immutability of versions, only pre-existing objects created while versioning was enabled can be replicated. Even if replication rules are disabled and re-enabled later, the objects created during the interim will be synced as the scanner queues...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/helpers_test.go

    		`)
    
    	nft := knftables.NewFake(knftables.IPv4Family, "kube-proxy")
    	err := nft.ParseDump(rules)
    	if err != nil {
    		t.Fatalf("failed to parse given nftables rules: %v", err)
    	}
    	// ensure rules were parsed correctly
    	assertNFTablesTransactionEqual(t, getLine(), rules, nft.Dump())
    	runPacketFlowTests(t, getLine(), nft, testNodeIPs, []packetFlowTest{
    		{
    			name:     "no match",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. architecture/environments/operator.md

    table of validation rules in
    [pkg/validate/validate.go](pkg/validate/validate.go). These rules
    refer to the Go struct path schema and hence have names with a capitalized first letter.
    The Helm values.yaml API is validated in
    [validate_values.go](pkg/validate/validate_values.go)
    and refer to the values.yaml data paths. Hence, these rules have names with a lower case first letter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/config.go

    			ConfigMap. This is required so that 'kubeadm upgrade' can configure your upgraded cluster correctly.
    		`), metav1.NamespaceSystem, constants.KubeadmConfigConfigMap),
    		// Without this callback, if a user runs just the "upload"
    		// command without a subcommand, or with an invalid subcommand,
    		// cobra will print usage information, but still exit cleanly.
    		// We want to return an error code in these cases so that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/runtime/string.go

    	}
    	copy(b, s)
    	return b
    }
    
    func stringtoslicerune(buf *[tmpStringBufSize]rune, s string) []rune {
    	// two passes.
    	// unlike slicerunetostring, no race because strings are immutable.
    	n := 0
    	for range s {
    		n++
    	}
    
    	var a []rune
    	if buf != nil && n <= len(buf) {
    		*buf = [tmpStringBufSize]rune{}
    		a = buf[:n]
    	} else {
    		a = rawruneslice(n)
    	}
    
    	n = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    	// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
    	// other rules are ignored. At most 20 elements are allowed.
    	// +listType=atomic
    	Rules []SuccessPolicyRule `json:"rules" protobuf:"bytes,1,opt,name=rules"`
    }
    
    // SuccessPolicyRule describes rule for declaring a Job as succeeded.
    // Each rule must have at least one of the "succeededIndexes" or "succeededCount" specified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top