Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 338 for nTables (0.24 sec)

  1. pkg/proxy/metrics/metrics.go

    		[]string{"table"},
    	)
    
    	// NFTablesSyncFailuresTotal is the number of nftables sync failures that the
    	// proxy has seen.
    	NFTablesSyncFailuresTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_nftables_sync_failures_total",
    			Help:           "Cumulative proxy nftables sync failures",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. tests/integration/security/pass_through_filter_chain_test.go

    						{
    							port:              ports.HTTPWorkloadOnly,
    							plaintextSucceeds: false,
    							mtlsSucceeds:      false,
    						},
    					},
    				},
    				{
    					// There is only authN policy that enables mTLS (Strict).
    					// The request should be denied because the client is always using plain text.
    					name: "STRICT",
    					config: `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableTable.java

        return Tables.immutableCell(
            checkNotNull(rowKey, "rowKey"),
            checkNotNull(columnKey, "columnKey"),
            checkNotNull(value, "value"));
      }
    
      /**
       * A builder for creating immutable table instances, especially {@code public static final} tables
       * ("constant tables"). Example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableTable.java

        return Tables.immutableCell(
            checkNotNull(rowKey, "rowKey"),
            checkNotNull(columnKey, "columnKey"),
            checkNotNull(value, "value"));
      }
    
      /**
       * A builder for creating immutable table instances, especially {@code public static final} tables
       * ("constant tables"). Example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	OffLevel Level = iota
    	// CriticalLevel enables critical level logging
    	CriticalLevel
    	// ErrorLevel enables error level logging
    	ErrorLevel
    	// WarningLevel enables warning level logging
    	WarningLevel
    	// InfoLevel enables info level logging
    	InfoLevel
    	// DebugLevel enables debug level logging
    	DebugLevel
    	// TraceLevel enables trace level logging
    	TraceLevel
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1alpha1_KubeProxyNFTablesConfiguration_To_config_KubeProxyNFTablesConfiguration(&in.NFTables, &out.NFTables, s); err != nil {
    		return err
    	}
    	if err := Convert_v1alpha1_KubeProxyWinkernelConfiguration_To_config_KubeProxyWinkernelConfiguration(&in.Winkernel, &out.Winkernel, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  7. src/image/jpeg/writer.go

    }
    
    type quantIndex int
    
    const (
    	quantIndexLuminance quantIndex = iota
    	quantIndexChrominance
    	nQuantIndex
    )
    
    // unscaledQuant are the unscaled quantization tables in zig-zag order. Each
    // encoder copies and scales the tables according to its quality parameter.
    // The values are derived from section K.1 after converting from natural to
    // zig-zag order.
    var unscaledQuant = [nQuantIndex][blockSize]byte{
    	// Luminance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. src/internal/profile/merge.go

    		if v != 0 {
    			return false
    		}
    	}
    	return true
    }
    
    type profileMerger struct {
    	p *Profile
    
    	// Memoization tables within a profile.
    	locationsByID map[uint64]*Location
    	functionsByID map[uint64]*Function
    	mappingsByID  map[uint64]mapInfo
    
    	// Memoization tables for profile entities.
    	samples   map[sampleKey]*Sample
    	locations map[locationKey]*Location
    	functions map[functionKey]*Function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  9. src/database/sql/fakedb_test.go

    	return db
    }
    
    func (db *fakeDB) wipe() {
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	db.tables = nil
    }
    
    func (db *fakeDB) createTable(name string, columnNames, columnTypes []string) error {
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	if db.tables == nil {
    		db.tables = make(map[string]*table)
    	}
    	if _, exist := db.tables[name]; exist {
    		return fmt.Errorf("fakedb: table %q already exists", name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    func StrictDomainName(use bool) Option {
    	return func(o *options) { o.useSTD3Rules = use }
    }
    
    // NOTE: the following options pull in tables. The tables should not be linked
    // in as long as the options are not used.
    
    // BidiRule enables the Bidi rule as defined in RFC 5893. Any application
    // that relies on proper validation of labels should include this rule.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top