Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 788 for nTables (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// stable: v1.30
    	// kep: https://kep.k8s.io/3716
    	//
    	// Enables usage of MatchConditions fields to use CEL expressions for matching on admission webhooks
    	AdmissionWebhookMatchConditions featuregate.Feature = "AdmissionWebhookMatchConditions"
    
    	// owner: @jefftree @alexzielenski
    	// alpha: v1.26
    	// beta: v1.27
    	// stable: v1.30
    	//
    	// Enables an single HTTP endpoint /discovery/<version> which supports native HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. cluster/addons/kube-proxy/kube-proxy-ds.yaml

              readOnly: false
            - mountPath: /run/xtables.lock
              name: xtables-lock
              readOnly: false
            - mountPath: /lib/modules
              name: lib-modules
              readOnly: true
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: xtables-lock
            hostPath:
              path: /run/xtables.lock
              type: FileOrCreate
          - name: lib-modules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 01:01:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation.go

    	XTablesParameterProblem
    	// XTablesVersionProblem indicates a version problem in xtables
    	XTablesVersionProblem
    	// XTablesResourceProblem indicates a resource problem in xtables
    	XTablesResourceProblem
    )
    
    var exittypeToString = map[XTablesExittype]string{
    	XTablesOtherProblem:     "xtables other problem",
    	XTablesParameterProblem: "xtables parameter problem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/proxy/manifests.go

            securityContext:
              privileged: true
            volumeMounts:
            - mountPath: /var/lib/kube-proxy
              name: kube-proxy
            - mountPath: /run/xtables.lock
              name: xtables-lock
              readOnly: false
            - mountPath: /lib/modules
              name: lib-modules
              readOnly: true
            env:
              - name: NODE_NAME
                valueFrom:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 06:51:57 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  5. pilot/pkg/features/xds.go

    	// Pilot injects this outbound filter if the service port name is `redis`.
    	EnableRedisFilter = env.Register(
    		"PILOT_ENABLE_REDIS_FILTER",
    		false,
    		"EnableRedisFilter enables injection of `envoy.filters.network.redis_proxy` in the filter chain.",
    	).Get()
    
    	// EnableMongoFilter enables injection of `envoy.filters.network.mongo_proxy` in the filter chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux.go

    		logger.Info("Using nftables Proxier")
    
    		if dualStack {
    			// TODO this has side effects that should only happen when Run() is invoked.
    			proxier, err = nftables.NewDualStackProxier(
    				ctx,
    				config.NFTables.SyncPeriod.Duration,
    				config.NFTables.MinSyncPeriod.Duration,
    				config.NFTables.MasqueradeAll,
    				int(*config.NFTables.MasqueradeBit),
    				localDetectors,
    				s.Hostname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/internal/goexperiment/flags.go

    	// the build cache; see https://github.com/golang/go/issues/59719.
    	CacheProg bool
    
    	// NewInliner enables a new+improved version of the function
    	// inlining phase within the Go compiler.
    	NewInliner bool
    
    	// RangeFunc enables range over func.
    	RangeFunc bool
    
    	// AliasTypeParams enables type parameters for alias types.
    	// Requires that gotypesalias=1 is set with GODEBUG.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/v1alpha1/defaults.go

    	}
    	if obj.IPVS.SyncPeriod.Duration == 0 {
    		obj.IPVS.SyncPeriod = metav1.Duration{Duration: 30 * time.Second}
    	}
    	if obj.NFTables.SyncPeriod.Duration == 0 {
    		obj.NFTables.SyncPeriod = metav1.Duration{Duration: 30 * time.Second}
    	}
    	if obj.NFTables.MinSyncPeriod.Duration == 0 {
    		obj.NFTables.MinSyncPeriod = metav1.Duration{Duration: 1 * time.Second}
    	}
    
    	if obj.Conntrack.MaxPerCore == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

        private XmlFileContentMerger iws;
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
         * For example see docs for {@link IdeaWorkspace}
         */
        public XmlFileContentMerger getIws() {
            return iws;
        }
    
        public void setIws(XmlFileContentMerger iws) {
            this.iws = iws;
        }
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/TransposedTableTest.java

        Table<String, Integer, Character> table = Tables.transpose(original);
        table.clear();
        populate(table, data);
        return table;
      }
    
      public void testTransposeTransposed() {
        Table<Integer, String, Character> original = HashBasedTable.create();
        assertSame(original, Tables.transpose(Tables.transpose(original)));
      }
    
      public void testPutOriginalModifiesTranspose() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top