Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for ledger (0.1 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/css/manual.css

    th.tableblock,
    td.content,
    div.footnote {
    	text-rendering: optimizeLegibility;
    }
    
    h1,
    h2,
    p,
    td.content,
    span.alt {
    	letter-spacing: -0.01em;
    }
    
    p strong,
    td.content strong,
    div.footnote strong {
    	letter-spacing: -0.005em;
    }
    
    p,
    blockquote,
    dt,
    td.content,
    span.alt {
    	font-size: 1.0625rem;
    }
    
    p {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    		// All this means is that we'll sleep longer than we otherwise would have.
    		worked = minScavWorkTime
    	}
    
    	// Multiply the critical time by 1 + the ratio of the costs of using
    	// scavenged memory vs. scavenging memory. This forces us to pay down
    	// the cost of reusing this memory eagerly by sleeping for a longer period
    	// of time and scavenging less frequently. More concretely, we avoid situations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers.go

    	nodeConditionMessageFmt = "The node had condition: %v. "
    	// containerMessageFmt provides additional information for containers exceeding requests
    	containerMessageFmt = "Container %s was using %s, request is %s, has larger consumption of %v. "
    	// containerEphemeralStorageMessageFmt provides additional information for containers which have exceeded their ES limit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

     * two separate characters. {@link #countIn} counts each supplementary character as 2 {@code char}s.
     *
     * <p>For up-to-date Unicode character properties (digit, letter, etc.) and support for
     * supplementary code points, use ICU4J UCharacter and UnicodeSet (freeze() after building). For
     * basic text processing based on UnicodeSet use the ICU4J UnicodeSetSpanner.
     *
     * <p>Example usages:
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // cost function, nor can we look at global information while deciding on
      // individual edges to contract.  Instead, we will make decisions on these
      // important edges then make decisions on all other edges, causing the highest
      // chance of all most important edges to be contracted.
      //
      // An example of where this might occur is with a digraph:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/reflect/type.go

    func isLetter(ch rune) bool {
    	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)
    }
    
    // isValidFieldName checks if a string is a valid (struct) field name or not.
    //
    // According to the language spec, a field name should be an identifier.
    //
    // identifier = letter { letter | unicode_digit } .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	_StackCacheSize = 32 * 1024
    
    	// Number of orders that get caching. Order 0 is FixedStack
    	// and each successive order is twice as large.
    	// We want to cache 2KB, 4KB, 8KB, and 16KB stacks. Larger stacks
    	// will be allocated directly.
    	// Since FixedStack is different on different systems, we
    	// must vary NumStackOrders to keep the same maximum cached size.
    	//   OS               | FixedStack | NumStackOrders
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    //     record should fit in one TCP segment.
    //   - For throughput-sensitive applications, such as large file transfers,
    //     larger TLS records better amortize framing and encryption overheads.
    //
    // A simple heuristic that works well in practice is to use small records for
    // the first 1MB of data, then use larger records for subsequent data, and
    // reset back to smaller records after the connection becomes idle. See "High
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	node2Name := types.NodeName("node2-name")
    	devicePath := "fake/device/path"
    
    	// Act
    	logger, _ := ktesting.NewTestContext(t)
    	generatedVolumeName1, add1Err := asw.AddVolumeNode(logger, volumeName, volumeSpec, node1Name, devicePath, true)
    	generatedVolumeName2, add2Err := asw.AddVolumeNode(logger, volumeName, volumeSpec, node2Name, devicePath, true)
    
    	// Assert
    	if add1Err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
Back to top