Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 4,111 for Tables (0.11 sec)

  1. src/cmd/compile/internal/types/size.go

    			// which would be a heap pointer to a not-in-heap type.
    			if f.Type.NotInHeap() {
    				t.SetNotInHeap(true)
    			}
    		}
    
    		offset += f.Type.width
    
    		maxwidth := MaxWidth
    		// On 32-bit systems, reflect tables impose an additional constraint
    		// that each field start offset must fit in 31 bits.
    		if maxwidth < 1<<32 {
    			maxwidth = 1<<31 - 1
    		}
    		if offset >= maxwidth {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/strings/replace.go

    				next:   t.next,
    			}
    			t.prefix = t.prefix[:n]
    			t.next = next
    			next.add(key[n:], val, priority, r)
    		}
    	} else if t.table != nil {
    		// Insert into existing table.
    		m := r.mapping[key[0]]
    		if t.table[m] == nil {
    			t.table[m] = new(trieNode)
    		}
    		t.table[m].add(key[1:], val, priority, r)
    	} else {
    		t.prefix = key
    		t.next = new(trieNode)
    		t.next.add("", val, priority, r)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) bytesAt(n int) []byte {
    	inf := rb.rune[n]
    	return rb.byte[inf.pos : int(inf.pos)+int(inf.size)]
    }
    
    // For Hangul we combine algorithmically, instead of using tables.
    const (
    	hangulBase  = 0xAC00 // UTF-8(hangulBase) -> EA B0 80
    	hangulBase0 = 0xEA
    	hangulBase1 = 0xB0
    	hangulBase2 = 0x80
    
    	hangulEnd  = hangulBase + jamoLVTCount // UTF-8(0xD7A4) -> ED 9E A4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  4. src/cmd/internal/src/pos.go

    type PosBase struct {
    	pos         Pos    // position at which the relative position is (line, col)
    	filename    string // file name used to open source file, for error messages
    	absFilename string // absolute file name, for PC-Line tables
    	line, col   uint   // relative line, column number at pos
    	inl         int    // inlining index (see cmd/internal/obj/inl.go)
    	fileIndex   int    // index of absFilename within PosTable.FileTable
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/HashBiMap.java

    import java.util.function.BiConsumer;
    import java.util.function.BiFunction;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link BiMap} backed by two hash tables. This implementation allows null keys and values. A
     * {@code HashBiMap} and its inverse are both serializable.
     *
     * <p>This implementation guarantees insertion-based iteration order of its keys.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    		// Remove everything but the known taken branch.
    		idx := int(constVal.AuxInt)
    		if idx < 0 || idx >= len(block.Succs) {
    			// This can only happen in unreachable code,
    			// as an invariant of jump tables is that their
    			// input index is in range.
    			// See issue 64826.
    			return false
    		}
    		block.swapSuccessorsByIdx(0, idx)
    		for len(block.Succs) > 1 {
    			block.removeEdge(1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

     "/usr/lib/llvm-3.6/bin/clang" -cc1 -triple x86_64-pc-linux-gnu -E -disable-free -disable-llvm-verifier -main-file-name - -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -target-linker-version 2.24 -v -dwarf-column-info -resource-dir /usr/lib/llvm-3.6/bin/../lib/clang/3.6.0 -internal-isystem /usr/local/include -internal-isystem /usr/lib/llvm-3.6/bin/../lib/clang/3.6.0/include -...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/ads.go

    		}
    	}
    	// add topology labels to proxy labels
    	proxy.Labels = labelutil.AugmentLabels(
    		proxy.Labels,
    		proxy.Metadata.ClusterID,
    		util.LocalityToString(proxy.Locality),
    		proxy.GetNodeName(),
    		proxy.Metadata.Network,
    	)
    }
    
    func localityFromProxyLabels(proxy *model.Proxy) *core.Locality {
    	region, f1 := proxy.Labels[labelutil.LabelTopologyRegion]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/passes.td

      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def LegalizeHashTablesPass : Pass<"tfl-legalize-hashtables-tf", "mlir::ModuleOp"> {
      let summary = "Legalize TensorFlow hash tables to TensorFlow Lite dialect.";
      let constructor = "CreateLegalizeHashTablesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated CustomResourceDefinitionVersion versions = 7;
    
      // additionalPrinterColumns specifies additional columns returned in Table output.
      // See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details.
      // If present, this field configures columns for all versions.
      // Top-level and per-version columns are mutually exclusive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top