Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for PROPERTIES (0.17 sec)

  1. pkg/proxy/nftables/proxier.go

    	}
    
    	tx.Add(&knftables.Table{
    		Comment: ptr.To("rules for kube-proxy"),
    	})
    
    	// Do an extra "add+delete" once to ensure all previous base chains in the table
    	// will be recreated. Otherwise, altering properties (e.g. priority) of these
    	// chains would fail the transaction.
    	if !proxier.flushed {
    		for _, bc := range nftablesBaseChains {
    			chain := &knftables.Chain{
    				Name: bc.name,
    			}
    			tx.Add(chain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		}
    		want := wantOut[segment]
    		if want != got {
    			t.Errorf("%s: got %q; want %q", segment, got, want)
    		}
    		delete(wantOut, segment)
    
    		// We must explicitly assert properties of the
    		// Signature's receiver since it doesn't participate
    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    		if sel.Kind() == MethodVal {
    			got := sig.Recv().Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

    import java.util.stream.Collectors;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link NavigableMap} whose contents will never change, with many other important properties
     * detailed at {@link ImmutableCollection}.
     *
     * <p><b>Warning:</b> as with any sorted collection, you are strongly advised not to use a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		}
    		want := wantOut[syntax]
    		if want != got {
    			t.Errorf("%s: got %q; want %q", syntax, got, want)
    		}
    		delete(wantOut, syntax)
    
    		// We must explicitly assert properties of the
    		// Signature's receiver since it doesn't participate
    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    		if sel.Kind() == MethodVal {
    			got := sig.Recv().Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// Intel recommends MFENCE;LFENCE in its manuals before RDTSC to have all
    	// previous instructions executed and all previous loads and stores to globally visible.
    	// Using MFENCE;LFENCE here aligns the serializing properties without
    	// runtime detection of CPU manufacturer.
    	MFENCE
    	LFENCE
    	RDTSC
    	JMP done
    
    // func memhash(p unsafe.Pointer, h, s uintptr) uintptr
    // hash function using AES hardware instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. go.sum

    github.com/lufia/plan9stats v0.0.0-20240513124658-fba389f38bae/go.mod h1:ilwx/Dta8jXAgpFYFvSWEMwxmbWXyiUHkd5FwyKhb5k=
    github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
    github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
    github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	roots    []*loadPkg
    	pkgCache *par.Cache[string, *loadPkg]
    	pkgs     []*loadPkg // transitive closure of loaded packages and tests; populated in buildStacks
    }
    
    // loaderParams configure the packages loaded by, and the properties reported
    // by, a loader instance.
    type loaderParams struct {
    	PackageOpts
    	requirements *Requirements
    
    	allPatternIsRoot bool // Is the "all" pattern an additional root?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	}
    	nbytes := npages * pageSize
    	if typ.manual() {
    		s.manualFreeList = 0
    		s.nelems = 0
    		s.limit = s.base() + s.npages*pageSize
    		s.state.set(mSpanManual)
    	} else {
    		// We must set span properties before the span is published anywhere
    		// since we're not holding the heap lock.
    		s.spanclass = spanclass
    		if sizeclass := spanclass.sizeclass(); sizeclass == 0 {
    			s.elemsize = nbytes
    			s.nelems = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top