Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for Words (0.04 sec)

  1. android/guava/src/com/google/common/collect/Tables.java

        public String toString() {
          return "(" + getRowKey() + "," + getColumnKey() + ")=" + getValue();
        }
      }
    
      /**
       * Creates a transposed view of a given table that flips its row and column keys. In other words,
       * calling {@code get(columnKey, rowKey)} on the generated table always returns the same value as
       * calling {@code get(rowKey, columnKey)} on the original table. Updating the original table
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    // all virtual hosts on that port to every filter chain uniformly or expose only the set of virtual hosts
    // configured under the server for those certificates. We adopt the latter approach. In other words, each
    // filter chain in the multi-filter-chain listener will have a distinct RDS route name
    // (https.<portNumber>.<portName>.<gatewayName>.<namespace>) so that when a RDS request comes in, we serve the virtual
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	a := b.LinkAction(work.ModeBuild, work.ModeBuild, pmain)
    	a.Target = testDir + testBinary + cfg.ExeSuffix
    	if cfg.Goos == "windows" {
    		// There are many reserved words on Windows that,
    		// if used in the name of an executable, cause Windows
    		// to try to ask for extra permissions.
    		// The word list includes setup, install, update, and patch,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You can also see at the end of the example _how to combine file collections_ using the `+` and `-` operators to merge and subtract them.
    An important feature of the resulting file collections is that they are _live_.
    In other words, when you combine file collections this way, the result always reflects what's currently in the source file collections, even if they change during the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    1. when no properties have been set, i.e. the specification is _empty_;
    2. when `languageVersion` has been set, optionally followed by setting any other property.
    
    In other words, if a vendor or an implementation are specified, they must be accompanied by the language version.
    Gradle distinguishes between toolchain specifications that configure the language version and the ones that do not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    	gcw.heapScanWork += int64(scanSize)
    }
    
    // scanConservative scans block [b, b+n) conservatively, treating any
    // pointer-like value in the block as a pointer.
    //
    // If ptrmask != nil, only words that are marked in ptrmask are
    // considered as potential pointers.
    //
    // If state != nil, it's assumed that [b, b+n) is a block in the stack
    // and may contain pointers to stack objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // allocation and scavenging.
    //
    // When synchronously scavenging for the memory limit or for debug.FreeOSMemory, these
    // "dense" packing heuristics are ignored (in other words, scavenging is "forced") because
    // in these scenarios returning memory to the OS is more important than keeping CPU
    // overheads low.
    
    package runtime
    
    import (
    	"internal/goos"
    	"internal/runtime/atomic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    	// If we have at least one type parameter, there is one in x.
    	// If we have exactly one type parameter, because it is in x,
    	// isTypeLit(x) is false and y was not changed above. In other
    	// words, if y was a defined type, it is still a defined type
    	// (relevant for the logic below).
    	switch px, py := u.asBoundTypeParam(x), u.asBoundTypeParam(y); {
    	case px != nil && py != nil:
    		// both x and y are type parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,2,opt,name=lendablePercent"`
    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/asm.go

    	if nameAddr.Sym.ABI() == obj.ABIInternal && flag&obj.NOSPLIT == 0 {
    		p.errorf("TEXT %q: ABIInternal requires NOSPLIT", name)
    	}
    
    	// Next operand is the frame and arg size.
    	// Bizarre syntax: $frameSize-argSize is two words, not subtraction.
    	// Both frameSize and argSize must be simple integers; only frameSize
    	// can be negative.
    	// The "-argSize" may be missing; if so, set it to objabi.ArgsSizeUnknown.
    	// Parse left to right.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top