Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 244 for addOption (0.12 sec)

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

        extends AbstractMultimap<K, V> implements ListMultimap<K, V>, Serializable {
      /*
       * Order is maintained using a linked list containing all key-value pairs. In
       * addition, a series of disjoint linked lists of "siblings", each containing
       * the values for a specific key, is used to implement {@link
       * ValueForKeyIterator} in constant time.
       */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package internal/counter implements the internals of the public counter package.
    // In addition to the public API, this package also includes APIs to parse and
    // manage the counter files, needed by the upload package.
    package counter
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    	"sync/atomic"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    However, it is essential to have relevant information to determine if something has gone wrong.
    
    Gradle defines six log levels, detailed in <<#logLevels,Log levels>>.
    In addition to the standard log levels, Gradle introduces two specific levels: _QUIET_ and _LIFECYCLE_.
    _LIFECYCLE_ is the default level used to report build progress.
    
    [[logLevels]]
    == Understanding Log levels
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter.go

    	default:
    		filterstack = append(filterstack, tcpFilter)
    	}
    
    	return filterstack
    }
    
    // buildOutboundNetworkFilters generates a TCP proxy network filter for outbound
    // connections. In addition, it generates protocol specific filters (e.g., Mongo
    // filter).
    func (lb *ListenerBuilder) buildOutboundNetworkFilters(
    	routes []*networking.RouteDestination,
    	port *model.Port, configMeta config.Meta, includeMx bool,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // Selector is a CEL expression which must evaluate to true if a
      // resource instance is suitable. The language is as defined in
      // https://kubernetes.io/docs/reference/using-api/cel/
      //
      // In addition, for each type in NamedResourcesAttributeValue there is a map that
      // resolves to the corresponding value of the instance under evaluation.
      // For example:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * (classes and objects) of the given [KaSymbolWithMembers]. The scope includes members inherited from the symbol's supertypes, in
         * addition to members which are declared explicitly inside the symbol's body.
         *
         * The member scope doesn't include synthetic Java properties. To get such properties, use [getSyntheticJavaPropertiesScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    - deployment environment: Java runtime, application server, ...
    
    In addition Gradle defines <<dependency_version_alignment.adoc#sec:virtual_platform,virtual platforms>>.
    
    NOTE: Maven's BOM (bill-of-material) is a popular kind of platform that <<platforms.adoc#sub:bom_import, Gradle supports>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    }
    
    // addChecked returns p+x.
    //
    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    func addChecked(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    All new Gradle APIs declare an `Action` argument type rather than `Closure`, which makes it very easy to pick out the delegate type. Even older APIs have an `Action` variant in addition to the old `Closure` one.
    
    [[groovy:local_variables]]
    == Local variables
    
    [source,groovy]
    def <name> = <value>        // Untyped variable
    <type> <name> = <value>     // Typed variable
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    - A testable bundle or executable linked with the main component’s object files
    
    The test plugins configure the required pieces of information appropriately.
    In addition, they attach the `xcTest` or `run` task to the `check` lifecycle task.
    It also create the `testImplementation` dependency configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top