Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for table_1 (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	}
    	for _, testCase := range table2 {
    		q1 := Quantity{d: infDecAmount{testCase.x}, Format: DecimalSI}
    		q2 := Quantity{d: infDecAmount{testCase.y}, Format: DecimalSI}
    		if result := q1.Cmp(q2); result != testCase.expect {
    			t.Errorf("X: %v, Y: %v, Expected: %v, Actual: %v", testCase.x, testCase.y, testCase.expect, result)
    		}
    	}
    }
    
    func TestParseQuantityString(t *testing.T) {
    	table := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    table.borderless > caption,
    table.plain > caption,
    table.striped > caption {
        font-weight: bold;
        font-size: smaller;
    }
    table.borderless th, table.borderless td,
    table.plain th, table.plain td,
    table.striped th, table.striped td {
        padding: 2px 5px;
    }
    table.borderless,
    table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	"k8s.io/kubernetes/pkg/util/async"
    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    	"sigs.k8s.io/knftables"
    )
    
    const (
    	// Our nftables table. All of our chains/sets/maps are created inside this table,
    	// so they don't need any "kube-" or "kube-proxy-" prefix of their own.
    	kubeProxyTable = "kube-proxy"
    
    	// base chains
    	filterPreroutingChain     = "filter-prerouting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	splitOffset int64
    }
    
    // lookup looks up a LocalSlot in the slot canonicalizer "sc", returning
    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    func (sc *slotCanonicalizer) lookup(ls LocalSlot) (SlKeyIdx, bool) {
    	split := noSlot
    	if ls.SplitOf != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/minio-dashboard.json

                "uid": "${DS_PROMETHEUS}"
              },
              "exemplar": true,
              "expr": "sum by (instance) (minio_s3_traffic_received_bytes{job=~\"$scrape_jobs\"})",
              "format": "table",
              "hide": false,
              "instant": false,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{instance}}",
              "metric": "process_start_time_seconds",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

              }
            }
          }
          table = newTable;
          this.count = newCount;
        }
    
        boolean replace(K key, int hash, V oldValue, V newValue) {
          lock();
          try {
            preWriteCleanup();
    
            AtomicReferenceArray<E> table = this.table;
            int index = hash & (table.length() - 1);
            E first = table.get(index);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "GEnoov", controls: 1}, // 'GE' but without honoring overflow
    
    		// JUMPTABLE implements jump tables.
    		// Aux is the symbol (an *obj.LSym) for the jump table.
    		// control[0] is the index into the jump table.
    		// control[1] is the address of the jump table (the address of the symbol stored in Aux).
    		{name: "JUMPTABLE", controls: 2, aux: "Sym"},
    	}
    
    	archs = append(archs, arch{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	47:  "operation canceled",
    	48:  "operation not supported",
    	49:  "disc quota exceeded",
    	50:  "bad exchange descriptor",
    	51:  "bad request descriptor",
    	52:  "message tables full",
    	53:  "anode table overflow",
    	54:  "bad request code",
    	55:  "invalid slot",
    	56:  "file locking deadlock",
    	57:  "bad font file format",
    	58:  "owner of the lock died",
    	59:  "lock is not recoverable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	Xcoffreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    
    	// Generate additional symbols for the native symbol table just prior to
    	// code generation.
    	GenSymsLate func(*Link, *loader.Loader)
    
    	// TLSIEtoLE converts a TLS Initial Executable relocation to
    	// a TLS Local Executable relocation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    		frame.lr = 0
    	} else if flag&abi.FuncFlagSPWrite != 0 && (!innermost || u.flags&(unwindPrintErrors|unwindSilentErrors) != 0) {
    		// The function we are in does a write to SP that we don't know
    		// how to encode in the spdelta table. Examples include context
    		// switch routines like runtime.gogo but also any code that switches
    		// to the g0 stack to run host C code.
    		// We can't reliably unwind the SP (we might not even be on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top