Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 781 for ledger (0.16 sec)

  1. pkg/ledger/util.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ledger
    
    import (
    	"bytes"
    
    	"github.com/spaolacci/murmur3"
    )
    
    // defaultLeaf is the Trie default value : hash of 0x0
    var defaultLeaf = hasher([]byte{0x0})
    
    const (
    	hashLength = 8
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    			return s.Discovery.StatusReporter.QueryLastNonce("test.default-1", ty)
    		}, nonce[:xds.VersionLen])
    	}
    
    	ledger := ledger.Make(time.Minute)
    	ledger.Put("key", "value") // If there is no config, ledger would be empty
    	s.Env().SetLedger(ledger)
    	reporter := &distribution.Reporter{
    		UpdateInterval: features.StatusUpdateInterval,
    	}
    	reporter.Init(s.Env().GetLedger(), test.NewStop(t))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. pkg/ledger/trie_cache.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ledger
    
    import (
    	"sync"
    	"time"
    
    	"istio.io/istio/pkg/cache"
    )
    
    type cacheDB struct {
    	// updatedNodes that have will be flushed to disk
    	updatedNodes byteCache
    	// updatedMux is a lock for updatedNodes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/ledger/smt_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ledger
    
    import (
    	"bytes"
    	"crypto/rand"
    	"fmt"
    	"runtime"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/cache"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "stanford.edu",
              "state.ca.us",
              "www.state.ca.us",
              "state.ca.us",
              "pvt.k12.ca.us",
              "www.rave.ca.",
              "cnn.ca",
              "ledger-enquirer.com",
              "it-trace.ch",
              "cool.dk",
              "cool.co.uk",
              "cool.de",
              "cool.es",
              "cool\uFF61fr", // Alternate dot character
              "cool.nl",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. pkg/ledger/smt.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ledger
    
    import (
    	"bytes"
    	"fmt"
    	"sync"
    	"time"
    
    	"istio.io/istio/pkg/cache"
    )
    
    // The smt is derived from https://github.com/aergoio/SMT with modifications
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"leafy_green":                          "\U0001f96c",
    	"leaves":                               "\U0001f343",
    	"lebanon":                              "\U0001f1f1\U0001f1e7",
    	"ledger":                               "\U0001f4d2",
    	"left_luggage":                         "\U0001f6c5",
    	"left_right_arrow":                     "\u2194\ufe0f",
    	"left_speech_bubble":                   "\U0001f5e8\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/cosmos/ledger-cosmos-go,v0.10.3,h1:Qhi5yTR5Pg1CaTpd00pxlGwNl4sFRdtK1J96OTjeFFc=,f1089701d8868e4ff3fd9e9a4104476963f725a713ee2a476b4ef8094a0bca20
    github.com/cosmos/ledger-go,v0.9.2,h1:Nnao/dLwaVTk1Q5U9THldpUMMXU94BOTWPddSmVB6pI=,a77b2063a64133d8dda638d5d602071429d7e2500576bfff5c1763f8572a8517
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	Mesh *meshconfig.MeshConfig `json:"-"`
    
    	// PushVersion describes the push version this push context was computed for
    	PushVersion string
    
    	// LedgerVersion is the version of the configuration ledger
    	LedgerVersion string
    
    	// JwtKeyResolver holds a reference to the JWT key resolver instance.
    	JwtKeyResolver *JwksResolver
    
    	// GatewayAPIController holds a reference to the gateway API controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/mdo/merger.vm

      specific language governing permissions and limitations
      under the License.
    *#
    #parse ( "common.vm" )
    #
    #set ( $package = "${packageToolV4}" )
    #set ( $className = "${model.name}Merger" )
    #
    #set ( $root = $model.getClass( $model.getRoot($version), $version ) )
    #
    #MODELLO-VELOCITY#SAVE-OUTPUT-TO ${package.replace('.','/')}/${className}.java
    // =================== DO NOT EDIT THIS FILE ====================
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top